示例#1
0
 public AnimPlayer3D(AnimationManager3D animMgr3D)
 {
     this.m_animMgr3D     = animMgr3D;
     this.m_animID        = -1;
     this.m_frameTime     = 40;
     this.m_animTime      = 0;
     this.m_animStartTime = 0;
     this.m_animEndTime   = 0;
     this.m_playbackSpeed = 128;
     this.m_flags         = 1;
     this.m_node          = (Node)null;
 }
示例#2
0
    public Model()
    {
        this.m_type                = 0;
        this.m_modelId             = -1;
        this.m_group               = (Group)null;
        this.m_animPlayer3D        = (AnimPlayer3D)null;
        this.m_supportNodeModelId  = -1;
        this.m_supportNode         = (Node)null;
        this.m_supportAnimPlayer3D = (AnimPlayer3D)null;
        this.m_animTimer           = 0;
        this.m_hemisphereMap       = (Texture2D)null;
        this.m_cachedLocators      = (Node[])null;
        this.m_hotspotLocators     = (Node[])null;
        this.m_benchtopLocators    = (Node[])null;
        this.m_root                = (Node)null;
        this.m_group               = new Group();
        AnimationManager3D animationManager3D = AppEngine.getCanvas().getAnimationManager3D();

        this.m_animPlayer3D        = new AnimPlayer3D(animationManager3D);
        this.m_supportAnimPlayer3D = new AnimPlayer3D(animationManager3D);
    }