actionscript child sprite coordinate
Posted
by Naro
on Stack Overflow
See other posts from Stack Overflow
or by Naro
Published on 2010-03-31T04:39:09Z
Indexed on
2010/03/31
4:43 UTC
Read the original article
Hit count: 305
actionscript-3
var s1:Sprite = new Sprite();
var s2:Sprite = new Sprite();
var s3:Sprite = new Sprite();
s2.addChild(s3);
s1.addChild(s2);
how can I find the coordinate of child in its parent's coordinate system?
© Stack Overflow or respective owner