solid

描述

An instance can be flagged as solid through the object properties in the Object Editor, or by changing the value of this built-in variable. If solid is set to true then, when a collision is detected, the colliding instance is returned automatically to the position it was at in the step previous to the collision (and then any code or actions are run in the collision event). If it is set to false, all positioning must be dealt with through the collision event.


语法:

solid;


返回:

Boolean(布尔值)


例如:

if other.visible = true
   {
   x = xprevious;
   y = yprevious;
   }

The above code will check the visible flag of the "other" instance in a collision and if it is set to true move that instance back to its previous position.