Thread: Particle Editor
View Single Post
  #21  
Old 07-17-2013, 07:13 PM
devilsknite1 devilsknite1 is offline
C:
devilsknite1's Avatar
Join Date: Jul 2006
Location: Florida, USA
Posts: 269
devilsknite1 has a spectacular aura about
Send a message via AIM to devilsknite1 Send a message via MSN to devilsknite1 Send a message via Yahoo to devilsknite1
Quote:
Originally Posted by i8bit View Post
PHP Code:
  with (findimg(200))
  {
    
spin degtorad(0);
    
rotation degtorad(0);
    
0;
    
0
Like that? not sure how to set the x and y by itself without adding it in a showImg()
Hint:

PHP Code:
with findImg200 ) ) { 
is functionally the same as:

PHP Code:
showImg200blah blah ); 
So yes, if you wanted to set the x/y to (29, 14). you would simply put:
PHP Code:
with findImg200 ) ) {
  
29;
  
14;

And that is technically the same as doing:

PHP Code:
showImg200"block.png"2914 ); 
Reply With Quote