Adding Basic JavaScript
How to write simple JavaScript code in the Builder and Studio
1. Add the following event to an object:
On: Interaction Start
Then: Myself
Run Script
2. Click on the Edit Script button on the event. The Script Editor will open and you can now write JavaScript code with it!
JavaScript Code Example
1. Write the following script in the new Script Editor window:
this.moveBy (1, 0, 0);
What does this script do? Each time it is activated, the script will move the object by 1 meter along the x-axis in the scene.
2. Play the Viewer and try it out! Does your object move 1 meter each time it is clicked?