Moves the entity according to the specified vector.
Syntax
'Declaration
Public Sub Move( _
ByVal As Single, _
ByVal As Single, _
ByVal As Single, _
ByVal As Boolean _
)
'Usage
Dim instance As ImGearVectorEntity
Dim offsetX As Single
Dim offsetY As Single
Dim offsetZ As Single
Dim transformBeforeMoving As Boolean
instance.Move(offsetX, offsetY, offsetZ, transformBeforeMoving)
public void Move(
float ,
float ,
float ,
bool
)
public: void Move(
float ,
float ,
float ,
bool
)
public:
void Move(
float ,
float ,
float ,
bool
)
Parameters
- offsetX
- X coordinate of the offset vector.
- offsetY
- Y coordinate of the offset vector.
- offsetZ
- Z coordinate of the offset vector.
- transformBeforeMoving
- Flag that defines an order of transformation.
See Also