1 (true) signifies if there has been motion within the past five seconds while 0 (false) signifies no motion.
What ports can I use it on?
All of them!
Code
var motion =Magic.modules.motion.movement;
usingMagic;publicclassDemo:MonoBehaviour{ // create a reference to the modulepublicMagic.Modules.MotionModule motion;voidStart() { }voidUpdate() { // access the property of the modulebool motion =motion.movement; }}