Difference between revisions of "Sprite:setScale"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Sets the horizontal, vertical and z axis scales of the sprite.<br /> <br /> <source lang="lua">...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 +
'''Class:''' [[Sprite]]<br/>
 +
 
=== Description ===
 
=== Description ===
<br />
+
Sets the horizontal, vertical and z axis scales of the sprite.
Sets the horizontal, vertical and z axis scales of the sprite.<br />
+
<syntaxhighlight lang="lua">
<br />
+
Sprite:setScale(scaleX,scaleY,scaleZ)
<source lang="lua">
+
</syntaxhighlight>
= Sprite:setScale(scaleXscaleYscaleZ,)
+
 
</source>
+
=== Parameters ===
'''scaleX:''' (number) of the object ''''''<br/>
+
'''scaleX''': (number) scale x of the object<br/>
'''scaleY:''' (number, default = scaleX) of the object ''''''<br/>
+
'''scaleY''': (number, default = scaleX) of the object<br/>
'''scaleZ:''' (number, default = scaleX) of the object ''''''<br/>
+
'''scaleZ''': (number, default = scaleX) of the object<br/>
 +
 
 +
{{Sprite}}

Latest revision as of 15:33, 13 July 2023

Available since: Gideros 2011.6
Class: Sprite

Description

Sets the horizontal, vertical and z axis scales of the sprite.

Sprite:setScale(scaleX,scaleY,scaleZ)

Parameters

scaleX: (number) scale x of the object
scaleY: (number, default = scaleX) of the object
scaleZ: (number, default = scaleX) of the object