- 
          
- 
        Couldn't load subscription status. 
- Fork 19
mp_linear_object
        CryoEagle edited this page Feb 11, 2019 
        ·
        1 revision
      
    Returns false when colliding with a specified object while moving with object
mp_linear_object(Xgoal, Ygoal, StepSize, obj)| Argument | Description | 
|---|---|
| floatXgoal | Target X position to move | 
| floatYgoal | Target Y position to move | 
| intStepSize | Pixels to move per call | 
| Type objStepSize | Object that is checked for collision | 
Returns: bool
This function will move with an object to a target position if an object will collide with a specified object, a function will return false.
if (mp_linear_object(10,10,20,typeof(oBrick)) == false)
{
    show_message("hello world");
}Above code will move with an object to X: 10, Y:10, if there will be an object named oBrick in a way function, will return false.
Back to Motion Planning