v2-ui #94

Merged
Vishnu merged 38 commits from v2-ui into main 2025-05-26 05:09:47 +00:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 919f0fc9aa - Show all commits

View File

@ -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],

View File

@ -3,6 +3,7 @@ interface CommentSchema {
commentId: string;
creatorId: string;
createdAt: string;
comment: string;
lastUpdatedAt: string;
position: [number, number, number];
rotation: [number, number, number];