Edited .sc documentation to reflect deprecations
This commit is contained in:
parent
195161e823
commit
3de04ea80b
|
|
@ -2,8 +2,7 @@
|
||||||
#
|
#
|
||||||
# swfc(1) File format specification
|
# swfc(1) File format specification
|
||||||
#
|
#
|
||||||
# Warning: not all of this is actually implemented yet- if there's a
|
# As interpreted from swfc error output.
|
||||||
# "TODO" behind a command, it has yet to be integrated into swfc.
|
|
||||||
#
|
#
|
||||||
# ===========================================================================
|
# ===========================================================================
|
||||||
|
|
||||||
|
|
@ -124,7 +123,8 @@
|
||||||
.put obj1 x=0 y=0 #object starts at (0,0)
|
.put obj1 x=0 y=0 #object starts at (0,0)
|
||||||
|
|
||||||
.frame 140
|
.frame 140
|
||||||
.change obj1 x+=100 y=0 scale=120% # smoothly move obj1 100 pixels to the right over 40 frames,
|
.move obj1 x+=100 y=0 # .change to move an object is deprecated for some reason
|
||||||
|
.change obj1 scale=120% # smoothly move obj1 100 pixels to the right over 40 frames,
|
||||||
# scaling it to 120% of it's original size
|
# scaling it to 120% of it's original size
|
||||||
.frame 170
|
.frame 170
|
||||||
.jump obj1 x=200 y=200 # make object to suddenly change to 200,200 at frame 70.
|
.jump obj1 x=200 y=200 # make object to suddenly change to 200,200 at frame 70.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue