Advance() public method

public Advance ( float deltaTime ) : void
deltaTime float
return void
Ejemplo n.º 1
0
    /// <summary>
    /// In LateUpdate, we process Advance on Scaleform movies. This allows device resets to be handled via SF_WasDeviceReset() properly regardless of which object's Update was called first.
    /// </summary>
	public virtual void SFLateUpdate()
	{
		if (SFMgr != null)
		{
			SFMgr.Advance (Time.deltaTime);
		}
	}