Guest User

Untitled

a guest
Jun 23rd, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. static function AddChildren( tr : Transform, childL : List.<Transform>):List.<Transform>
  2. {
  3.     var tt : Transform;
  4.    
  5.     for ( tt in tr )
  6.     {
  7.         childL.Add(tt) ;
  8.     }
  9.    
  10.     return childL;
  11. }
Add Comment
Please, Sign In to add comment