예제 #1
0
        public static void AddActor(string modelName, string noun, Math.Vector3 position, float heading, bool isEgo)
        {
            Game.Actor actor = new Game.Actor(_sceneContentManager, modelName, noun, isEgo);
            actor.Position    = position;
            actor.FacingAngle = heading;

            _actors.Add(actor);

            actor.LoadClothing(_sceneContentManager);
        }