OLPCities/Sprites
Descriptions of methods
<a name="clearCollisionArea"></a> <a name="clearFrameByDirection"></a> <a name="clearRoute"></a> <a name="clearRouteLoop"></a> <a name="destroy"></a> <a name="setCollisionArea"></a> <a name="setCollisionZTest"></a> <a name="setRoute"></a> <a name="setRouteByCommand"></a> <a name="getHits"></a> <a name="hasHit"></a> <a name="makeStatic"></a> <a name="makeNormal"></a> <a name="moveTo"></a> <a name="setDir"></a> <a name="setXlimits"></a> <a name="setYlimits"></a> <a name="setImage"></a> <a name="swapImage"></a> <a name="setFrame"></a> <a name="setFrameByDirection"></a> <a name="setAnimation"></a> <a name="setAnimationLoop"></a> <a name="setAnimationRepeat"></a> <a name="setAnimationSpeed"></a> <a name="setSpeed"></a> <a name="getXYdegs"></a> <a name="setValue"></a> <a name="setXYdegs"></a> <a name="setZ"></a> <a name="switchOn"></a> <a name="switchOff"></a> <a name="resize"></a> <a name="dragType"></a> <a name="follow"></a> <a name="groupHit"></a> <a name="groupSet"></a> <a name="makeDraggable"></a> <a name="makeUndraggable"></a> <a name="setCollide"></a> <a name="stopFollowing"></a> <a name="useHitEvents"></a> <a name="setHitEvent"></a> <a name="target"></a> <a name="stopTargetting"></a> <a name="makeHard"></a> <a name="setHardHitEvent"></a> <a name="setOpacity"></a>Method | Parameters | Description |
---|---|---|
clearCollisionArea | (none) | Removes the collision area from a sprite. The sprite will register collisions
around its perimeter (the default behaviour). See the <a href="#setCollisionArea">setCollisionArea()</a>method for details about setting collision areas. |
clearFrameByDirection | (none) | Stops sprite from setting its own frame based on its current direction.
See the <a href="#setFrameByDirection">setFrameByDirection()</a> methodfor details about this. |
clearRoute | (none) | This stops sprite from following a route. See <a href="#setRoute">setRoute()</a> method for details of how to set a route. |
clearRouteLoop | (none) | This stops the sprite from looping through a route. It will continue
following its current route until the end. See the <a href="#setRoute">setRoute()</a>method for details about setting a route. |
destroy | (none) | This will "destroy" the sprite object. After calling this method, the
sprite will no longer respond to any methods. In actuality, the sprite object still exists, and is reused the next time a new sprite is generated. The reason the destroy method does not actually destroy the sprite (IE, remove all the properties, methods and DOM objects from the document) is to work around the memory leak in IE6 (and possibly IE5), whereby the browser never actually frees up any memory allocated when a DOM object is generated, when that object is destroyed (unless the browser is minimized and maximizedagain for some bizarre reason!) |
setCollisionArea | Numeric, Numeric, Numeric, Numeric | Sets the collision area for a sprite. This is a rectangular region within
the sprite which should be used to register collisions. Any collisions outside this area will be ignored (think of it as a "soft" area outside the collision area). Basically this means that you can cause sprites to overlap slightly before a collision will occur which is handy with oddly shaped sprites. The parameters passed are the distances from the left, right, top and bottom (in that order) of the sprite for the collision area rectangle. Setting this will not affect performance. See the <a href="#clearCollisionArea">clearCollisionArea()</a>method for details about clearing collision areas. |
setCollisionZTest | Numeric | Sets the maximum distance another sprite can be within in the Z axis
to be able to collide with this sprite (see the <a href="#setZ">setZ</a>
method for details of how to set the Z index). Eg, If this sprite has a
Z index of 10 and you use mySprite.setCollisionZTest(5)
then other sprites with a Z index less than 5 or higher than 15 will not
be able to collide with it! This can be a very useful setting and may help
to speed up your code if used correctly since the Z test is performed before
the normal collision test and is very quick. So, if you don't care whether
certain sprites collide, just set this value so collisions will be ignored!
|
setRoute | Boolean, Numeric, Numeric [...] (or Array) | This sets a route for the sprite to follow. This method can be passed
an array OR a list of arguments to specify the route. If an array were used, it would contain exactly the same elements that would be passed in the list and so I will describe the list method here. |
setRouteByCommand | String, Boolean | This programs a sprite with a set of commands, in order to create a complex
route. The first argument is a string containing the commands, separated by semi-colons. Any white space is ignored. The second argument specifies whether the sprite should loop (true means loop, false means don't) through the route until cleared (using <a href="#clearRoute">clearRoute()</a>). The commands a sprite understands are all of the form of a character, followed by either one or two arguments, separated by a comma. The commands follow: mX,Y; will move the sprite to position X,Y on the screen. So m100,50; will move the sprite to position 100,50. aX,Y; will move turn the sprite anticlockwise by Y degrees per frame for X frames. So a20,2; will move the sprite 2 degrees anticlockwise per frame, for 20 frames. cX,Y; will move turn the sprite clockwise by Y degrees per frame for X frames. So c20,2; will move the sprite 2 degrees clockwise per frame, for 20 frames. sX; will set the sprite's speed to X. dX; will set the sprite's direction to X degrees (0-359). fX; will move the sprite forward at its current speed for X frames. AX; turn the sprite anticlockwise by X degrees. CX; turn the sprite clockwise by X degrees. To see an example of the setRouteByCommand in action, take a look at <a href="../examples/sprite_example_3.html">Spriteexample 3</a>. |
getHits | (none) | This will return an array containing references to all the sprites this
sprite hit during the last gameloop. If it didn't hit anything, this array will be empty. It's probably more efficient to test for a hit first by checking the <a href="#hit">.hit</a> property, which always holds the last spritehit during the last gameloop. If nothing was hit, .hit will be false. |
hasHit | Object | Use this to test if the sprite has hit another. This superseeds the old
<a href="#hit">hit</a> property. So if this sprite is called fred and you
want to know if it has hit a sprite called bill, just use
of you having to check! |
makeStatic | (none) | This makes sprite static. See <a href="#isstatic">isstatic</a> property |
makeNormal | (none) | This makes sprite normal |
moveTo | Numeric, Numeric | This moves sprite to position on screen. * Note: this is relative to
the global offsets, unless the sprite is static, and sprite will only appearif it's property "on" is true or it's static |
setDir | Numeric, Numeric | This sets sprite directions. These are added to the sprite positions every loop by the sprite engine |
setXlimits | Numeric, Numeric | This limits the sprite x movement. sprite cannot move left further than
the first argument, or right further than second argument minus its width. If property "<a href="#bounces">bounces</a>" is true then sprite will bouncewhen it hits its limit |
setYlimits | Numeric, Numeric | This limits the sprite y movement. sprite cannot move up further than
the first argument, or down further than second argument minus its height. If property "<a href="#bounces">bounces</a>" is true then sprite will bouncewhen it hits its limit |
setImage | String, Numeric, Numeric, Numeric, Numeric |
* Note: DO NOT use this method for normal image .src changes if the new image will have the same dimensions, instead use the <a href="#swapImage">swapImage()</a> method, which is MUCH faster for this! sets the sprite image. Sprite images can be in "canvas animation" format, this is a method of animating sprites that radically decreases download times, and incurs almost no CPU overhead. The image will consist of all the frames of animation for the sprite. frames (see <a href="#setFrame">setFrame()</a> below) are in x axis, and animations (set <a href="#setAnimation">setAnimation()</a>, <a href="#setAnimation">setAnimationSpeed()</a>) are in y axis for each frame. The arguments to this method are passed in the following order: "frames" are in the X axis of a canvas image and "animations" are in the Y axis. (See example of sprite animation for clarification on this) |
swapImage | String | Swaps the sprite's image to a new passed as the argument. You must use
<a href="#setImage">setImage()</a> to set the sprite's initial image. This method will not resize the image currently in use, and so should only be used to swap between images of the same size unless you don't mind the scaling.On the other hand though, it's very fast! |
setFrame | Numeric | This sets the sprite's frame. Each frame can have a number of animations.
Using this resets the animation position for a sprite to the first animation for the frame (animation position 0). You must set a frame for a sprite before it will be displayed at all. If a sprite only has one frame, andno animation, use <a href="#setFrame">setFrame(0)</a> |
setFrameByDirection | Numeric, Numeric, Numeric [...] | This method is used to specify which frames the sprite should use when
it's heading in different directions. The arguments are in sets of 3, and are of the form degree,degree,frame, degree,degree,frame etc etc. So if you wanted a sprite to use frame 0 when it was moving in the direction between 50 and 70 degrees, and frame 1 when it was moving between 71 and 100 degrees, you could use something like this:frame that covers 45 degrees! |
<a name="setFalling"></a>setFalling | Numeric |
You can use this in any way you feel appropriate. Perhaps set to 1 if the sprite is falling, then 0 if the sprite is not falling. For example: mySprite.setFalling(1); |
<a name="setFallingSpeed"></a>setFallingSpeed | Numeric |
This is another useful property. You can use this to keep a record of the sprite's falling speed. mySprite.setFallingSpeed(8); Note: At this time there are no falling functions provided in the sprite module. You will have to handle this yourself. FallingSpeed, setFalling, setJumpSpeed etc are simply properties that you can use in whatever way you choose. |
<a name="setFinishPos"></a>setFinishPos | Numeric |
It is often useful to calculate a finish position for a sprite when it is falling. mySprite.setFinishPos(278); |
<a name="setJumping"></a>setJumping |
You can use this in any way you feel appropriate. Perhaps set to 1 if the sprite is jumping, then 0 if the sprite is not jumping. For example: mySprite.setJumping(1); |
|
<a name="setJumpSpeed"></a>setJumpSpeed |
This is another useful property. You can use this to keep a record of the sprite's jumping speed. You can change it in your script if you want to make the sprite's jump speed slow down to 0 to make it look realistic. Perhaps once it reaches 0 you can setJumping(0), then setFalling(1) and define a fallingSpeed (see above). mySprite.setFallingSpeed(8); |
|
setAnimation | Numeric | This sets the sprite's animation stage for the frame |
setAnimationLoop | Numeric, Numeric |
This sets the animation limits for a frame between the first and second arguments. This is used when using a canvas image with animations of varying lengths (for example, 2 stages of animation for one frame, 5 for another frame etc) You cannot set the animation limits below 0, or above the maximum amount of animations specified when canvas was loaded into the sprite using <a href="#setImage">setImage()</a>. Also, the first argument cannot be greater than the second. The method checks for these things and adjusts the values to correct limits. This is useful if you wish to revert to the default animation limits for a sprite, just set the first argument to 0 and the second to a large number! |
setAnimationRepeat | Numeric | When this is set to a value above -1, the sprite will animate x times.
A value of -1 means "keep animating indefinately". Once the sprite stops animating, you can start it animating again by either using this method again, or using the <a href="#setAnimationSpeed">setAnimationSpeed()</a>method |
setAnimationSpeed | Numeric [,String] |
The first argument sets the sprites animation speed. A value of 0 means no animation. Any other value means how many frames between animation changes. So 1 would mean every frame, 2 would mean every other frame etc. When animating, the sprite keeps the same <a href="#frame">frame</a> but loops through the animations for that frame (between the default limits of animation when the <a href="#setImage">setImage()</a> method was called, or the limits imposed by <a href="#setAnimationLoop">setAnimationLoop()</a>). 0 is the default speed for animations (no animation). The optional second argument is either "forward" or "backward" (case insensitive). "forward" means loop through animation stages from top to bottom of the image you gave the sprite, "backward" loops up from bottom to top. "forward" is the default setting. If this argument is omitted, the sprite will continue to animate in its current direction. |
<a name="setShootDelay"></a>setShootDelay | Numeric | A useful property. The gamelib engine doesn't do anything with this. You
can use it in whatever way you wish. A suggestion is to use it in shooting games. Only let a sprite fire if it's shoot delay is <0. Then set the sprite's shoot delay to, say, 5 when it shoots. On every loop reduce thesprite's shoot delay e.g mySprite.setShootDelay(mySprite.shootDelay-1). |
setSpeed | Numeric | Sets the sprite speed |
getXYdegs | (none) | This method will return the sprite's current direction as degrees of
a circle. So if you had set the direction to (1,0) for example, this method would return 90. The return value is always an integer between 0 and 359. |
setValue | Numeric | This sets the sprite's value. See the <a href="#value">value</a> property for details. |
setXYdegs | Numeric | This sets the sprite direction between 0 and 359 degrees. wraps so that 360 degs=0, 370 degs=10 etc |
setZ | Numeric | This sets the sprite z-index. Sprites with higher values move over those with lower ones |
switchOn | (none) | This switches the sprite on. When a sprite is created, it is off by default, and so not visible |
switchOff | (none) | This switches the sprite off (default) |
resize | Numeric, Numeric |
This resizes the sprite to x,y size. Note: this is not the size of the canvas, but the size of the individual frames/animations in the canvas. Any collision area settings are retained. Be aware that Netscape 4 has difficulties resizing images, so although it will work, there will be some flickering if sprites are being resized constantly. |
dragType | Numeric/String |
Defines how the sprite can be dragged (see <a href="#makeDraggable">makeDraggable()</a> method which must be used first). The dragType can be one of the following: 0 or "normal" =normal dragging (default). * Note: sprites cannot be dragged outside their x and y limits (xmin,xmax,ymin,ymax) |
follow | Sprite Object, Numeric, Numeric | As with the layer object (see <a href="layerdoc.html">layer docs</a>),
this causes the sprite to follow another sprite or the mouse object, remaining at distance x,y (where x is the second argument, y the third) from the object it's following. A sprite can only follow one object at a time, so you MUST use the <a href="#stopFollowing">stopFollowing()</a> method before you makea sprite follow something else! |
groupHit | (none) | This will cause a groupHit event for this sprite's group. If the group
this sprite belongs to has a trigger set, and this hit, added to the current total of hits in the group has reached the group's trigger value, then the group's trigger event will fire, and the groups hit count will be reset to zero. (see <a href="#SPgroupClearTrigger">global group functions section</a>for more details about sprite groups) |
groupSet | Numeric | This will add the sprite to a group. If a group with the ID passed as
the parameter does not exist, it will be created and the hitCount for the group set to zero. (see <a href="#SPgroupClearTrigger">global group functionssection</a> for more details about sprite groups) |
makeDraggable | (none) | Makes the sprite draggable! * Note: You must have the <a href="mousedoc.html">mouse module</a> linked in to use this |
makeUndraggable | (none) | Stops the sprite from being draggable! * Note: You must have the <a href="mousedoc.html">mouse module</a> linked in to use this |
setCollide | Boolean | If true, the sprite will register collisions. If this is false, then the <a href="#setHitEvent">hit events</a> will not work (default=false) |
stopFollowing | (none) | Calling this method causes the sprite to stop following another sprite or the mouse |
useHitEvents | Boolean | If true, then sprite will use hit events (and hard hit events) as defined
below. Using these events does not have much impact upon performance, and can greatly simplify your own code! Don't enable them unless you're actuallygoing to use them though... |
setHitEvent | Sprite Object,String | String argument is function name (usually, but can be any legitimate
javascript statement) to be called when this sprite hits the Sprite Object. You cannot set a hit event for the mouse since there are already 4 <a href="#onmouseover">mouseevents</a> for that! |
target | Sprite Object, Numeric, Numeric | The sprite will now move toward the Sprite Object, offset from its top
left corner by x,y pixels (passed as the second and third arguments. Whether it catches a moving sprite or not depends on the speeds of the two sprites. A sprite can only target one object at a time, so use the <a href="#stopTargetting">stopTargetting()</a>method before you make a sprite target a new object. |
stopTargetting | String | This stops the sprite from targetting another sprite. If the String 'drift'
is passed (ie mySprite.stopTargetting('drift'))
then the sprite will continue moving in the direction it was before it stopped
targetting. |
makeHard | (none) | This makes sprite hard (fnaa fnaa :). See <a href="#hard">hard</a> property for details |
setHardHitEvent | String | The string argument is a function (usually, but can be any legitimate
javascript statement) to be called when this sprite hits ANY hard sprite. You must enable hit events for the sprite to use this (see <a href="#useHitEvents">useHitEvents()</a>method) |
setOpacity | Numeric | Sets the opacity of the sprite. Range is from 0 to 100, with 0 being invisible.
It's probably not a good idea to use this too much in a game, as it affects performance when there are a lot of semi-transparent objects flying around (looks nice though!) This function has no effect with Netscape 4 (browserdoes not support transparency.) |
Descriptions of properties
<a name="on"></a> <a name="state"></a> <a name="value"></a> <a name="x"></a> <a name="y"></a> <a name="z"></a> <a name="xmin"></a> <a name="ymin"></a> <a name="xmax"></a> <a name="ymax"></a> <a name="bounces"></a> <a name="width"></a> <a name="height"></a> <a name="xdir"></a> <a name="ydir"></a> <a name="xydegs"></a> <a name="speed"></a> <a name="collides"></a> <a name="hard"></a> <a name="frame"></a> <a name="animpos"></a> <a name="animdir"></a> <a name="animspd"></a> <a name="hit"></a> <a name="image"></a> <a name="isstatic"></a> <a name="onmouseover"></a> <a name="onmouseout"></a> <a name="onclickdown"></a> <a name="onclickup"></a> <a name="draggable"></a> <a name="hitevents"></a> <a name="beingfollowed"></a> <a name="followedby"></a> <a name="following"></a> <a name="followingx"></a> <a name="followingy"></a> <a name="opacity"></a>Property | Data Type | Read/Write | Description |
---|---|---|---|
on | Boolean | R | Use this to determine whether the sprite is on/off. When off, it's not on screen. |
state | Numeric? | R/W | Not currently used by gamelib. Can be used for anything! |
value | Numeric | R | Sprite's value. This has no effect on the sprite engine itself. It was
added as a convenience property. If for instance your player blows up a
sprite called "alien", we can use something like score+=alien.value.
Set the value with the <a href="#setValue">setValue</a> method. |
x | Numeric | R | Sprite's X position (see also Sp_xoffset) |
y | Numeric | R | Sprite's Y position (see also Sp_yoffset) |
z | Numeric | R | Sprite's z position. Sprites with higher value will pass over sprites
with lower, also if a sprite collides with more than one other during a loop, the sprite with the highest z index will be reported in the <a href="#hit">hit</a>property. |
xmin | Numeric | R | The minumum allowed x position for sprite. Sprite will either stop or bounce (see <a href="#bounces">bounces</a>) if it hits this limit. |
ymin | Numeric | R | The minimum allowed y position for sprite. Sprite will either stop or bounce (see <a href="#bounces">bounces</a>) if it hits this limit. |
xmax | Numeric | R | The maximum allowed x position for sprite. Sprite will either stop or bounce (see <a href="#bounces">bounces</a>) if it hits this limit. |
ymax | Numeric | R | The maximum allowed y position for sprite. Sprite will either stop or bounce (see <a href="#bounces">bounces</a>) if it hits this limit. |
bounces | Boolean | R/W | If sprite hits boundary this decides whether it bounces or stops. |
width | Numeric | R | The width of sprite |
height | Numeric | R | The height of sprite |
xdir | Numeric | R | The direction of sprite in x axis |
ydir | Numeric | R | The direction of sprite in y axis |
xydegs | Numeric | R | The current direction of sprite as 0-359 degrees |
speed | Numeric | R | The speed of sprite. the x and y directions are multiplied by this figure |
collides | Boolean | R/W | This decides whether the sprite should check for a collision each loop.
Note: If this sprite collides with more than one other sprite during a loop, the sprite with the highest z value will be returned in the <a href="#hit">hit</a> property. You can and should now set this property using <a href="#setCollide">setCollide()</a>detailed in the method section |
hard | Boolean | R | If a sprite is hard, other sprites that detect collisions will not be
able to pass through it unless they are moving so quickly that they "jump" the hard sprite. The other sprite will register a collision, and be stopped at the point at which it was about to pass through the hard sprite. If the other sprite is not moving, the hard sprite will push it along. The hard sprite itself will generally act like any other sprite apart from its hardness.Hard sprites are ideal as walls/barriers/platforms in a game! |
frame | Numeric | R | The current frame being used by an animated sprite. Use <a href="#setFrame">setFrame()</a> to change. |
animpos | Numeric | R | The current animation position for a frame. Use <a href="#setAnimation">setAnimation()</a> to change. |
animdir | String | R | The direction of animation, either "forward" or "backward". Use <a href="#setAnimationType">setAnimationType()</a> to change |
animspd | Numeric | R | The number of frames between animation changes. 0 means no animation. Use <a href="#setAnimationSpeed">setAnimationSpeed()</a> to change |
hit | Object | R | If not null, the object it holds is the last sprite this sprite has collided
with. <a href="#collides">collides</a> must be set to true for this to work. * Note: This property is deprecated. Please use the <a href="#hasHit">hasHit()</a> method or create <a href="#setHitEvent">hit events</a> instead of this,which can report multiple collisions. |
<a name="falling"></a>falling | Numeric | This is used to signify that the sprite is falling. I usually set to 1 if falling, 0 otherwise. | |
<a name="fallingSpeed"></a>fallingSpeed | This can be used to store a falling speed for a sprite. This is handy if you want to increase a sprite's speed as it falls to simulate gravity. | ||
<a name="finishPos"></a>finishPos | This is the sprite's finish position which you can use to tell it when to stop falling. | ||
image | String | R | The image canvas the sprite is using. Its dimensions must be (width*frames) wide and (height*animations) of the sprite shape. |
isstatic | Boolean | R | Whether sprite is static. If static, sprite does not detect or cause
collisions, does not have speed, dirrection or move relative to global positions. These are ideally used for screen elements that are not part of the gameplay (lives left displays, timers, bonus displays, non-moving backgrounds etc).It can only be moved by <a href="#moveTo">moveTo(x,y)</a> |
<a name="jumping"></a>jumping | This has the same purpose as falling (see above). | ||
<a name="shootDelay"></a>shootDelay | Numeric | Contains the sprite's shoot delay. See <a href="#setShootDelay">setShootDelay </a>for more info. | |
<a name="jumpSpeed"></a>jumpSpeed | This has the same purpose as fallingSpeed (see above). But for jumping of course :) | ||
onmouseover | String | R/W | The string is the function name to be called when the mouse pointer has
moved over the sprite. This CAN include arguments so mySprite.onmouseover="dosomething(x,y,z)"
would pass the variables x,y,z to the function dosomething |
onmouseout | String | R/W | The string is the function name to be called when the mouse pointer has moved away from the sprite |
onclickdown | String | R/W | The string is the function name to be called when the mouse button has been pressed while over the sprite |
onclickup | String | R/W | The string is the function name to be called when the mouse button has been released while over the sprite |
draggable | Boolean | R/W | Whether the sprite is draggable or not. You should now use the new <a href="#makeDraggable">makeDraggable()</a>
and <a href="#makeUndraggable">makeUndraggable()</a> methods rather than setting this "by hand". See also <a href="#dragType">dragType()</a> method.Note: sprites cannot be dragged outside their x and y limits (xmin,xmax,ymin,ymax) |
hitevents | Boolean | R | Whether this sprite is using hit events (see <a href="#setHitEvent">setHitEvent()</a> method |
beingfollowed | Boolean | R | True if sprite is being followed by another object (sprite or layer) |
followedby | (array of Objects) | R | Which objects are following this sprite (see <a href="#follow">follow()</a> method) |
following | Object | R | The sprite this sprite is following |
followingx | Numeric | R | The x offset to sprite this sprite is following |
followingy | Numeric | R | The y offset to sprite this sprite is following |
opacity | Numeric | R | The opacity level of sprite (0-100) Using opacity will obviously impact performance |
Descriptions of Global functions for sprite library
<a name="SPgroupClearTrigger"></a> <a name="SPgroupGetMembers"></a> <a name="SPgroupReset"></a> <a name="SPgroupSetTrigger"></a>Function | Parameters | Description |
---|---|---|
Sp_groupClearTrigger | Numeric |
This will clear the trigger for the group passed as the parameter to this function. See the <a href="#SPgroupSetTrigger">Sp_groupSetTrigger</a> function for details about group triggers. |
Sp_groupGetMembers | Numeric |
This will return an array of references to all the sprites that belong to the group passed as the parameter to the function. If there are no members, the array will be empty. |
Sp_groupReset | Numeric |
This will reset the trigger counter for the group passed as the parameter to this function. See the <a href="#SPgroupSetTrigger">Sp_groupSetTrigger</a> function for details about group triggers. |
Sp_groupSetTrigger | Numeric, Numeric, String |
This will set a trigger for a group. The parameters to pass to this function are the groupID, then the number of sprite <a href="#groupHit">groupHits</a> that will cause the group to trigger, and finally a string containing the function or instructions to execute when the trigger value is reached. When used properly, groups and group triggers can be very powerful tools. The most obvious use is to create Boss type sprites which comprise of many sprites all working together. A hit on any one of the sprites will affect the group, and by using the Sp_groupGetMembers function, you can easily control a whole group of sprites as one entity if you wish! |
Descriptions of Global properties for sprite library
<a name="SPlinuxcompatible"></a> <a name="SPxoffset"></a> <a name="SPyoffset"></a> <a name="SPtotalsprites"></a> <a name="SPspritesonscreen"></a>Property | Data Type | Read/Write | Description |
---|---|---|---|
Sp_linuxcompatible | Boolean | R/W | If this is set to true, linux compatibility mode is enabled for the sprite engine. Setting this
to true will enable a workaround to a bug in the Mozilla rendering engine (at the time of writing, the most recent version of Mozilla is 1.1). |
Sp_xoffset | Numeric | R/W |
(default=0) The origin of the sprites in the x axis. A sprite x position is relative to this unless the sprite is <a href="#isstatic">static</a>. This variable is also the x origin for the mouse object (see <a href="mousedoc.html">mouse docs</a>) |
Sp_yoffset | Numeric | R/W |
(default=0) the origin of the sprites in the y axis. A sprite y position is relative to this unless the sprite is <a href="#isstatic">static</a>. This variable is also the y origin for the mouse object (see <a href="mousedoc.html">mouse docs</a>) |
Sp_totalsprites | Numeric | R | The number of sprites you've created |
Sp_spritesonscreen | Numeric | R |
The number of sprites currently on screen. This does not include <a href="#isstatic">static</a> sprites |