| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- function SkeletonAnimation(name,duration) {
- if(arguments[0] != "__skip_ptr__") {
- this.__ptr = Polycode.SkeletonAnimation(name,duration)
- }
- }
- Duktape.fin(SkeletonAnimation.prototype, function (x) {
- if (x === SkeletonAnimation.prototype) {
- return;
- }
- Polycode.SkeletonAnimation__delete(x.__ptr)
- })
- SkeletonAnimation.prototype.getName = function() {
- return Polycode.SkeletonAnimation_getName(this.__ptr)
- }
- SkeletonAnimation.prototype.Play = function(once) {
- Polycode.SkeletonAnimation_Play(this.__ptr, once)
- }
- SkeletonAnimation.prototype.Stop = function() {
- Polycode.SkeletonAnimation_Stop(this.__ptr)
- }
- SkeletonAnimation.prototype.Reset = function() {
- Polycode.SkeletonAnimation_Reset(this.__ptr)
- }
- SkeletonAnimation.prototype.Update = function(elapsed) {
- Polycode.SkeletonAnimation_Update(this.__ptr, elapsed)
- }
- SkeletonAnimation.prototype.setSpeed = function(speed) {
- Polycode.SkeletonAnimation_setSpeed(this.__ptr, speed)
- }
- SkeletonAnimation.prototype.setWeight = function(newWeight) {
- Polycode.SkeletonAnimation_setWeight(this.__ptr, newWeight)
- }
- SkeletonAnimation.prototype.getWeight = function() {
- return Polycode.SkeletonAnimation_getWeight(this.__ptr)
- }
- SkeletonAnimation.prototype.isPlaying = function() {
- return Polycode.SkeletonAnimation_isPlaying(this.__ptr)
- }
|