Skip to content
This repository was archived by the owner on Sep 17, 2022. It is now read-only.

Commit 19bc2cb

Browse files
added comments
1 parent e076a45 commit 19bc2cb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Assets/Scripts/ARStage.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,12 @@ public void Next()
110110
Debug.Log(args.state_type);
111111
if (args.state_type != "comment")
112112
{
113-
/*ask user to set position of object if not set already*/
113+
string comment = args.comments;
114+
ChangeComments(comment);
115+
if (index + 1 < stageData.size)
116+
index++;
117+
else
118+
return;
114119
}
115120
string id = (string)args.state_def["id"];
116121
string funcType = args.state_type.Split('_').ToList()[1];

0 commit comments

Comments
 (0)