We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4aac501 commit 25106b2Copy full SHA for 25106b2
src/com/gskinner/motion/GTween.hx
@@ -767,14 +767,14 @@ class GTween #if (flash || openfl) extends EventDispatcher #end
767
}
768
769
/**
770
- Shorthand method for making multiple setProperty calls quickly.
+ Shorthand method for making multiple setValue calls quickly.
771
This adds the specified properties to the values list. Passing a
772
property with a value of null will delete that value from the list.
773
774
**Example:** set x and y end values, delete rotation:
775
776
```haxe
777
- myGTween.setProperties({x:200, y:400, rotation:null});
+ myGTween.setValues({x:200, y:400, rotation:null});
778
```
779
780
@param properties An object containing end property values.
0 commit comments