# Set Physics State

Grammar — SetPhysicsState state delayLow delayHigh
FlagsNative | Function | Hidden

Constructs and returns a SetPhysicsState actor message based on the parameters. This message will dictate to the actor how its associated physics should behave. It will only work on actors with a model.

# Arguments

  • int — State
  • fixed — Delay Low
  • fixed — Delay High

Returns — string<actormsg>

native string MakeMsgSetPhysicsState(
	int physicsState,
	fixed delayLow,
	fixed delayHigh,
);

Category: Actor / Message Constructors

# Examples

— None found —