FRenderer.Update C# (CSharp) Method

Update() public method

public Update ( ) : void
return void
    public void Update()
    {
        int allRenderablesCount = _allRenderables.Count;
        for(int a = 0; a<allRenderablesCount; a++)
        {
            _allRenderables[a].Update(Futile.nextRenderLayerDepth++);
        }
    }

Usage Example

コード例 #1
0
 public void LateUpdate()     //called by the engine
 {
     _renderer.Update();
 }