FSO.Common.Rendering.Framework._3DAbstract.Initialize C# (CSharp) 메소드

Initialize() 공개 메소드

public Initialize ( _3DLayer layer ) : void
layer _3DLayer
리턴 void
        public virtual void Initialize(_3DLayer layer)
        {
        }

Usage Example

예제 #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