Difference between revisions of "RenderTarget:draw"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2013.06<br/> === Description === Renders provided object or object hierarchy as a texture. <source lang="lua"> = RenderTarget:draw(spr...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2013.06<br/>
 
'''Available since:''' Gideros 2013.06<br/>
 +
'''Class:''' [[RenderTarget]]<br/>
 +
 
=== Description ===
 
=== Description ===
 
Renders provided object or object hierarchy as a texture.
 
Renders provided object or object hierarchy as a texture.
<source lang="lua">
+
<syntaxhighlight lang="lua">
= RenderTarget:draw(spritexy,)
+
RenderTarget:draw(sprite,x,y)
</source>
+
</syntaxhighlight>
'''sprite:''' (Sprite) any sprite inherited object or object hierarchy to render (this object doesn't need to be added to the stage hierarchy) ''''''<br/>
+
 
'''x:''' (number, default = 0) The x start position of the texture '''optional'''<br/>
+
=== Parameters ===
'''y:''' (number, default = 0) The y start position of the texture '''optional'''<br/>
+
'''sprite''': (Sprite) any sprite inherited object or object hierarchy to render (this object doesn't need to be added to the stage hierarchy)<br/>
 +
'''x''': (number, default = 0) the x start position of the texture '''optional'''<br/>
 +
'''y''': (number, default = 0) the y start position of the texture '''optional'''<br/>
 +
 
 +
{{RenderTarget}}

Latest revision as of 15:31, 13 July 2023

Available since: Gideros 2013.06
Class: RenderTarget

Description

Renders provided object or object hierarchy as a texture.

RenderTarget:draw(sprite,x,y)

Parameters

sprite: (Sprite) any sprite inherited object or object hierarchy to render (this object doesn't need to be added to the stage hierarchy)
x: (number, default = 0) the x start position of the texture optional
y: (number, default = 0) the y start position of the texture optional