FSO.Common.Rendering.Framework._3DLayer.AddExternal C# (CSharp) Method

AddExternal() public method

Adds a scene to the draw stack. The system will not call Draw on the scene but it will be initialized and given updates
public AddExternal ( _3DAbstract scene ) : void
scene _3DAbstract
return void
        public void AddExternal(_3DAbstract scene)
        {
            External.Add(scene);
            if (this.Device != null)
            {
                scene.Initialize(this);
            }
        }