FSWorldComponent.FixedUpdate C# (CSharp) Method

FixedUpdate() public method

public FixedUpdate ( ) : void
return void
    void FixedUpdate()
    {
        if(pwait > 0)
        {
            pwait--;
            return;
        }
        world.Step(Time.fixedDeltaTime);
    }
FSWorldComponent