View Single Post
  #6  
Old 02-10-2008, 09:00 PM
zokemon zokemon is offline
That one guy...
zokemon's Avatar
Join Date: Mar 2001
Location: Sonoma County, California
Posts: 2,925
zokemon is a jewel in the roughzokemon is a jewel in the rough
Send a message via ICQ to zokemon Send a message via AIM to zokemon Send a message via MSN to zokemon Send a message via Yahoo to zokemon
Quote:
Originally Posted by cbkbud View Post
Is it possible to change the anchor position of a GANI or image?
That's a great idea.

Maybe something like:
NPC Code:
centerrelative - Where the relative center of the image is based on the width and height.  Default is {0.5, 0.5}.
centeroffset - Pixel offset from the relative center that is regardless of image width and height. Default is {0, 0}.



So if you wanted it to always rotate around its lower left corner you could just do:
PHP Code:
centerrelative = {01};
centeroffset = {00}; 
If you wanted to rotate 16 pixels down and right from the upper left, you could just do:
PHP Code:
centerrelative = {00};
centeroffset = {1616}; 
__________________
Do it with a DON!
Reply With Quote