Create mirror buttons in the universe

minhky

Member
Hello everyone.
today is New Year's Day 2019
Wish everyone happy new year and happiness.
I am a beginner with Beyond so I have many problems that need your help.
soon i have a small show laser show at a park. I want to use the features of the universe.
I want to create mirror buttons in the universe. can you help me
a guide video or article.
Thanks very much.
0
 

Attachments

  • universe.png
    universe.png
    58.6 KB · Views: 26
create a new button in Universe

And paste the code from below into the pangoscript area of the button.

This script will set the first 2 zones to the original state and inverts zone 3 and 4.

Code:
// PangoScript code template
exit // each section always should have EXIT command

OnChange:
// put your code below
ControlZone 1; 
SizeX 100; 

ControlZone 2; 
SizeX 100; 

ControlZone 3; 
SizeX -100; 

ControlZone 4; 
SizeX -100;

exit // do not remove EXIT

OnMouseDown:
// put your code below
exit // do not remove EXIT

OnMouseUp:
// put your code below
exit // do not remove EXIT
 
Back
Top