GetAutoCenterSpriteHandle
Flag = GetAutoCenterSpriteHandle(SpriteIndex)
 
Parameters:

    SpriteIndex = The identifier of the sprite you wish to Center the sprite handle of
Returns:

    Flag = The Auto Center state of this sprite
 

      The GetAutoCenterSpriteHandle function return the current auto center sprite handle state from a sprite.




FACTS:


      * Also see AutoCenterSpriteHandle,CenterSpriteHandle, SpriteHandle





Mini Tutorial:


      Create sprite, assign it an image, Center the sprites handles for this image and display these values back.
  
  
; Create Image  #10 of size 100x by 200y in pixels
  CreateImage 10,100,200
  
; Create Sprite #1
  CreateSprite 1
  
; Set this sprite to AUTO CENTER any future assigned images.
  AutoCenterSpriteHandle 1,true
  
; Assign our created image to this sprite..
  SpriteImage 1,10
  
  
; Display this sprites newly set sprite handle offsets
  
  Print GetAutoCenterSpriteHandle(1)
  Print GetSpriteHandleX(1)
  Print GetSpriteHandleY(1)
  
; Display the Screen and wait for the user to press a key
  Sync
  WaitKey
  
  
  



This example would output.

  
  1
  -50
  -100
  

 
Related Info: AutoCenterSpriteHandle | CenterSpriteHandle | SpriteHandle | SpriteImage :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com