You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- -- 扩展Track的一些功能
- function cc.BaseTrack:loadFromXmlNode(xmlNode)
- cc.Track.loadFromXmlNode(self , xmlNode);
- self:setBindSource(xmlNode.BindSource)
- self:setBindTarget(xmlNode.BindTarget)
- if xmlNode.SourceBone then
- self:setSourceBoneName(xmlNode.SourceBone)
- end
-
- if xmlNode.TargetBone then
- self:setTargetBoneName(xmlNode.TargetBone)
- end
- end
|