Difference between revisions of "Pixel.new"
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''<translate>Available since</translate>:''' Gideros 2016.06<br/> | '''<translate>Available since</translate>:''' Gideros 2016.06<br/> | ||
+ | '''<translate>Class</translate>:''' [[Special:MyLanguage/Pixel|Pixel]]<br/> | ||
=== <translate>Description</translate> === | === <translate>Description</translate> === | ||
<translate>Create new pixel</translate> | <translate>Create new pixel</translate> | ||
Line 13: | Line 14: | ||
__NOTOC__ | __NOTOC__ | ||
'''<translate>Available since</translate>:''' in development<br/> | '''<translate>Available since</translate>:''' in development<br/> | ||
+ | '''<translate>Class</translate>:''' [[Special:MyLanguage/Pixel|Pixel]]<br/> | ||
=== <translate>Description</translate> === | === <translate>Description</translate> === | ||
<translate>Constructor to create a Pixel with texture in letterbox mode. Every texture will be fitted into Pixel dimensions with preserving texture aspect ratio.</translate> | <translate>Constructor to create a Pixel with texture in letterbox mode. Every texture will be fitted into Pixel dimensions with preserving texture aspect ratio.</translate> |
Revision as of 09:29, 24 August 2018
Available since: Gideros 2016.06
Class: Pixel
Description
Create new pixel
Pixel.new(color,alpha,width,height)
Parameters
color: (number) hex value representing color optional
alpha: (number) alpha value from 0 to 1 optional
width: (number) width of pixel optional
height: (number) height of pixel optional
Available since: in development
Class: Pixel
Description
Constructor to create a Pixel with texture in letterbox mode. Every texture will be fitted into Pixel dimensions with preserving texture aspect ratio.
Pixel.new(texture,width,height,texture_scale_x,texture_scale_y,texture_x,texture_y)
Parameters
texture: (Texture) texture to use for the pixel
width: (number) width of the Pixel optional
height: (number) height of the Pixel optional
texture_scale_x: (number) horizontal scale of the pixel texture optional
texture_scale_y: (number) vertical scale of the pixel texture optional
texture_x: (number) horizontal position of the pixel texture optional
texture_y: (number) vertical position of the pixel texture optional