Esempio n. 1
0
 public AvatarControl()
 {
     SharedWorld.DoAsyncLoad = false;
     UsePhysics = true;
     InitializeComponent();
     scene = new AvatarScene();
 }
Esempio n. 2
0
 public AvatarCanvas()
     : base()
 {
     Canvas3D.Debug    = 0;
     World.DoAsyncLoad = false;
     scene             = new AvatarScene();
 }
Esempio n. 3
0
        protected override void OnInitialized(System.EventArgs e)
        {
            scene = new AvatarScene();
            scene.SuppressNavigation = true;
            PreviewTouchDown        += OnTouchDown;
            PreviewTouchUp          += OnTouchUp;
            PreviewTouchMove        += OnTouchMove;
            OnStop += OnStopAnim;

            base.OnInitialized(e);
        }