UHSampleGame.CoreObjects.StaticModel.SetupModel C# (CSharp) Method

SetupModel() public method

Adds a model to the Static Model and performs setup
public SetupModel ( Model newModel, Vector3 position ) : void
newModel Microsoft.Xna.Framework.Graphics.Model
position Vector3
return void
        public void SetupModel(Model newModel, Vector3 position)
        {
            this.model = newModel;
            SetupModel(position);
            SetupCamera();
        }

Same methods

StaticModel::SetupModel ( ) : void
StaticModel::SetupModel ( Model model ) : void
StaticModel::SetupModel ( Vector3 position ) : void