FSO.Common.Rendering.Framework._3DAbstract.Initialize C# (CSharp) Method

Initialize() public method

public Initialize ( _3DLayer layer ) : void
layer _3DLayer
return void
        public virtual void Initialize(_3DLayer layer)
        {
        }

Usage Example

Esempio n. 1
0
 /// <summary>
 /// Adds a scene to the draw stack. The system will not call
 /// Draw on the scene but it will be initialized and given updates
 /// </summary>
 /// <param name="scene"></param>
 public void AddExternal(_3DAbstract scene)
 {
     External.Add(scene);
     if (Device != null)
     {
         scene.Initialize(this);
     }
 }
All Usage Examples Of FSO.Common.Rendering.Framework._3DAbstract::Initialize