v2-ui #94
|
@ -79,6 +79,7 @@ function CommentsGroup() {
|
|||
commentId: MathUtils.generateUUID(),
|
||||
creatorId: userId,
|
||||
createdAt: new Date().toISOString(),
|
||||
comment: '',
|
||||
lastUpdatedAt: new Date().toISOString(),
|
||||
position: position.toArray(),
|
||||
rotation: [0, 0, 0],
|
||||
|
|
|
@ -3,6 +3,7 @@ interface CommentSchema {
|
|||
commentId: string;
|
||||
creatorId: string;
|
||||
createdAt: string;
|
||||
comment: string;
|
||||
lastUpdatedAt: string;
|
||||
position: [number, number, number];
|
||||
rotation: [number, number, number];
|
||||
|
|
Loading…
Reference in New Issue