Class

io.scalajs.dom.html.phaser

Image

Related Doc: package phaser

Permalink

class Image extends pixijs.Sprite with Core with Angle with phaser.Phaser.Component.Animation with AutoCull with Bounds with BringToTop with Crop with Destroy with FixedToCamera with InputEnabled with LifeSpan with LoadTexture with Overlap with Reset with ScaleMinMax with Smoothed

An Image is a light-weight object you can use to display anything that doesn't need physics or animation. It can still rotate, scale, crop and receive input events. This makes it perfect for logos, backgrounds, simple buttons and other non-Sprite graphics.

Annotations
@RawJSType() @native() @JSName( "Phaser.Image" )
See also

http://phaser.io/docs/2.6.2/Phaser.Image.html

Linear Supertypes
Smoothed, ScaleMinMax, Reset, Overlap, LoadTexture, LifeSpan, InputEnabled, FixedToCamera, Destroy, Crop, BringToTop, Bounds, AutoCull, component.Animation, Angle, Core, pixijs.Sprite, Container, DisplayObject, Object, Any, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Image
  2. Smoothed
  3. ScaleMinMax
  4. Reset
  5. Overlap
  6. LoadTexture
  7. LifeSpan
  8. InputEnabled
  9. FixedToCamera
  10. Destroy
  11. Crop
  12. BringToTop
  13. Bounds
  14. AutoCull
  15. Animation
  16. Angle
  17. Core
  18. Sprite
  19. Container
  20. DisplayObject
  21. Object
  22. Any
  23. AnyRef
  24. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Image()

    Permalink
    Attributes
    protected
  2. new Image(game: Phaser.Game, x: Double, y: Double, key: |[|[|[String, Phaser.RenderTexture], Phaser.BitmapData], pixijs.Texture], frame: |[String, JsNumber])

    Permalink

    game

    A reference to the currently running game.

    x

    The x coordinate of the Image. The coordinate is relative to any parent container this Image may be in.

    y

    The y coordinate of the Image. The coordinate is relative to any parent container this Image may be in.

    key

    The texture used by the Image during rendering. It can be a string which is a reference to the Cache entry, or an instance of a RenderTexture, BitmapData or PIXI.Texture.

    frame

    If this Image is using part of a sprite sheet or texture atlas you can specify the exact frame to use by giving a string or numeric index.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addChild(child: DisplayObject): DisplayObject

    Permalink
    Definition Classes
    Container
  5. def addChildAt(child: DisplayObject, index: Int): DisplayObject

    Permalink
    Definition Classes
    Container
  6. def alignIn(container: |[|[|[|[|[|[|[Phaser.Rectangle, Phaser.Sprite], Phaser.Image], Phaser.Text], Phaser.BitmapText], Phaser.Button], Phaser.Graphics], Phaser.TileSprite], position: Int = js.native, offsetX: Double = js.native, offsetY: Double = js.native): Object

    Permalink

    Aligns this Game Object to the side of another Game Object, or Rectangle, known as the 'parent', in one of 11 possible positions.

    Aligns this Game Object to the side of another Game Object, or Rectangle, known as the 'parent', in one of 11 possible positions. The parent must be a Game Object, or Phaser.Rectangle object. This can include properties such as World.bounds or Camera.view, for aligning Game Objects within the world and camera bounds. Or it can include other Sprites, Images, Text objects, BitmapText, TileSprites or Buttons. Please note that aligning a Sprite to another Game Object does not make it a child of the parent. It simply modifies its position coordinates so it aligns with it.

    container

    The Game Object or Rectangle with which to align this Game Object to. Can also include properties such as World.bounds or Camera.view

    position

    The position constant. One of Phaser.TOP_LEFT (default), Phaser.TOP_CENTER, Phaser.TOP_RIGHT, Phaser.LEFT_CENTER, Phaser.CENTER, Phaser.RIGHT_CENTER, Phaser.BOTTOM_LEFT, Phaser.BOTTOM_CENTER or Phaser.BOTTOM_RIGHT

    offsetX

    A horizontal adjustment of the Containers bounds, applied to the aligned position of the Game Object. Use a negative value to shrink the bounds, positive to increase it.

    offsetY

    A vertical adjustment of the Containers bounds, applied to the aligned position of the Game Object. Use a negative value to shrink the bounds, positive to increase it.

    returns

    This Game Object.

    Definition Classes
    Bounds
  7. var alive: Boolean

    Permalink

    A useful flag to control if the Game Object is alive or dead.

    A useful flag to control if the Game Object is alive or dead.

    This is set automatically by the Health components damage method should the object run out of health. Or you can toggle it via your game code.

    This property is mostly just provided to be used by your game - it doesn't effect rendering or logic updates. However you can use Group.getFirstAlive in conjunction with this property for fast object pooling and recycling.

    Definition Classes
    LifeSpan
    See also

    Phaser.Component.LifeSpan#alive

  8. var alpha: Alpha

    Permalink
    Definition Classes
    DisplayObject
  9. var alphanumber: Double

    Permalink
    Definition Classes
    Container
  10. var anchor: pixijs.Point

    Permalink
    Definition Classes
    DisplayObject
  11. var angle: Double

    Permalink

    The angle property is the rotation of the Game Object in degrees from its original orientation.

    The angle property is the rotation of the Game Object in degrees from its original orientation.

    Values from 0 to 180 represent clockwise rotation; values from 0 to -180 represent counterclockwise rotation.

    Values outside this range are added to or subtracted from 360 to obtain a value within the range. For example, the statement player.angle = 450 is the same as player.angle = 90.

    If you wish to work in radians instead of degrees you can use the property rotation instead. Working in radians is slightly faster as it doesn't have to perform any calculations.

    Definition Classes
    ImageAngle → DisplayObject
  12. var animations: Phaser.AnimationManager

    Permalink

    If the Game Object is enabled for animation (such as a Phaser.Sprite) this is a reference to its AnimationManager instance.

    If the Game Object is enabled for animation (such as a Phaser.Sprite) this is a reference to its AnimationManager instance. Through it you can create, play, pause and stop animations.

    Definition Classes
    Core
  13. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  14. def autoCull: Boolean

    Permalink

    A Game Object with autoCull set to true will check its bounds against the World Camera every frame.

    A Game Object with autoCull set to true will check its bounds against the World Camera every frame. If it is not intersecting the Camera bounds at any point then it has its renderable property set to false. This keeps the Game Object alive and still processing updates, but forces it to skip the render step entirely. * This is a relatively expensive operation, especially if enabled on hundreds of Game Objects. So enable it only if you know it's required, or you have tested performance and find it acceptable.

    Definition Classes
    AutoCull
  15. var bottom: Double

    Permalink

    The sum of the y and height properties.

    The sum of the y and height properties. This is the same as y + height - offsetY.

    Definition Classes
    Bounds
  16. var cacheAsBitmap: Boolean

    Permalink
    Definition Classes
    DisplayObject
  17. var centerX: Double

    Permalink

    The center x coordinate of the Game Object.

    The center x coordinate of the Game Object. This is the same as (x - offsetX) + (width / 2).

    Definition Classes
    Bounds
  18. var centerY: Double

    Permalink

    The center y coordinate of the Game Object.

    The center y coordinate of the Game Object. This is the same as (y - offsetY) + (height / 2).

    Definition Classes
    Bounds
  19. def children: Array[DisplayObject]

    Permalink
    Definition Classes
    Container
  20. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. var data: Object

    Permalink

    An empty Object that belongs to this Game Object.

    An empty Object that belongs to this Game Object. This value isn't ever used internally by Phaser, but may be used by your own code, or by Phaser Plugins, to store data that needs to be associated with the Game Object, without polluting the Game Object directly.

    Definition Classes
    Core
  22. var debug: Boolean

    Permalink

    A debug flag designed for use with Game.enableStep.

    A debug flag designed for use with Game.enableStep.

    Definition Classes
    Core
  23. def destroy(destroyChildren: Boolean): Unit

    Permalink

    Base destroy method for generic display objects.

    Base destroy method for generic display objects.

    Definition Classes
    ImageDestroy → Container
  24. def destroy(): Unit

    Permalink

    Base destroy method for generic display objects.

    Base destroy method for generic display objects.

    Definition Classes
    ImageDestroy → DisplayObject
  25. def destroy(destroyChildren: Boolean, destroyTexture: Boolean): Unit

    Permalink

    Destroys the Game Object.

    Destroys the Game Object. This removes it from its parent group, destroys the input, event and animation handlers if present and nulls its reference to game, freeing it up for garbage collection.

    If this Game Object has the Events component it will also dispatch the onDestroy event. You can optionally also destroy the BaseTexture this Game Object is using. Be careful if you've more than one Game Object sharing the same BaseTexture.

    destroyChildren

    Should every child of this object have its destroy method called as well?

    destroyTexture

    Destroy the BaseTexture this Game Object is using? Note that if another Game Object is sharing the same BaseTexture it will invalidate it.

    Definition Classes
    Destroy
  26. def destroyPhase: Boolean

    Permalink

    As a Game Object runs through its destroy method this flag is set to true, and can be checked in any sub-systems or plugins it is being destr

    As a Game Object runs through its destroy method this flag is set to true, and can be checked in any sub-systems or plugins it is being destr

    Definition Classes
    Destroy
  27. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  29. var events: Phaser.Events

    Permalink
    Definition Classes
    Core
  30. var filterArea: pixijs.Rectangle

    Permalink
    Definition Classes
    Container
  31. var filters: Array[AbstractFilter]

    Permalink
    Definition Classes
    Container
  32. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  33. var frame: |[String, JsNumber]

    Permalink

    If this Image is using part of a sprite sheet or texture atlas you can specify the exact frame to use by giving a string or numeric index.

  34. var game: Phaser.Game

    Permalink

    A reference to the currently running game.

  35. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  36. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  37. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  38. var height: Double

    Permalink
    Definition Classes
    Container
  39. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  40. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  41. var key: |[|[|[String, Phaser.RenderTexture], Phaser.BitmapData], pixijs.Texture]

    Permalink

    The texture used by the Image during rendering.

    The texture used by the Image during rendering. It can be a string which is a reference to the Cache entry, or an instance of a RenderTexture, BitmapData or PIXI.Texture.

  42. def kill(): DisplayObject

    Permalink
    Definition Classes
    LifeSpan
  43. var left: Double

    Permalink

    The left coordinate of the Game Object.

    The left coordinate of the Game Object. This is the same as x - offsetX.

    Definition Classes
    Bounds
  44. var mask: |[pixijs.Graphics, pixijs.Sprite]

    Permalink
    Definition Classes
    Container
  45. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  46. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  47. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  48. def offsetX: Double

    Permalink

    The amount the Game Object is visually offset from its x coordinate.

    The amount the Game Object is visually offset from its x coordinate. This is the same as width * anchor.x. It will only be > 0 if anchor.x is not equal to zero.

    Definition Classes
    Bounds
  49. def offsetY: Double

    Permalink

    The amount the Game Object is visually offset from its y coordinate.

    The amount the Game Object is visually offset from its y coordinate. This is the same as height * anchor.y. It will only be > 0 if anchor.y is not equal to zero.

    Definition Classes
    Bounds
  50. def parent: Container

    Permalink
    Definition Classes
    Container
  51. var pivot: pixijs.Point

    Permalink
    Definition Classes
    Container
  52. def play(key: String, frameRate: Double = 60, loop: Boolean = false, killOnComplete: Boolean = false): component.Animation

    Permalink
    Definition Classes
    Animation
  53. var position: pixijs.Point

    Permalink
    Definition Classes
    Container
  54. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  55. var renderable: Boolean

    Permalink
    Definition Classes
    Container
  56. def reset(x: Double, y: Double, health: Double = 1): DisplayObject

    Permalink
    Definition Classes
    Reset
  57. def revive(health: Double = 1): DisplayObject

    Permalink
    Definition Classes
    LifeSpan
  58. var right: Double

    Permalink

    The right coordinate of the Game Object.

    The right coordinate of the Game Object. This is the same as x + width - offsetX.

    Definition Classes
    Bounds
  59. var rotation: Double

    Permalink
    Definition Classes
    Container
  60. var scale: pixijs.Point

    Permalink
    Definition Classes
    Container
  61. var scaleMax: Phaser.Point

    Permalink

    The maximum scale this Game Object will scale up to.

    The maximum scale this Game Object will scale up to.

    It allows you to prevent a parent from scaling this Game Object higher than the given value.

    Set it to null to remove the limit.

    Definition Classes
    ScaleMinMax
  62. var scaleMin: Phaser.Point

    Permalink

    The minimum scale this Game Object will scale down to.

    The minimum scale this Game Object will scale down to.

    It allows you to prevent a parent from scaling this Game Object lower than the given value.

    Set it to null to remove the limit.

    Definition Classes
    ScaleMinMax
  63. def setParent(container: Container): Container

    Permalink
    Definition Classes
    DisplayObject
  64. def setScaleMinMax(minX: Double = js.native, minY: Double = js.native, maxX: Double = js.native, maxY: Double = js.native): Unit

    Permalink

    Sets the scaleMin and scaleMax values.

    Sets the scaleMin and scaleMax values. These values are used to limit how far this Game Object will scale based on its parent. For example if this Game Object has a minScale value of 1 and its parent has a scale value of 0.5, the 0.5 will be ignored and the scale value of 1 will be used, as the parents scale is lower than the minimum scale this Game Object should adhere to. By setting these values you can carefully control how Game Objects deal with responsive scaling. If only one parameter is given then that value will be used for both scaleMin and scaleMax: setScaleMinMax(1) = scaleMin.x, scaleMin.y, scaleMax.x and scaleMax.y all = 1 If only two parameters are given the first is set as scaleMin.x and y and the second as scaleMax.x and y: setScaleMinMax(0.5, 2) = scaleMin.x and y = 0.5 and scaleMax.x and y = 2 If you wish to set scaleMin with different values for x and y then either modify Game Object.scaleMin directly, or pass null for the maxX and maxY parameters. Call setScaleMinMax(null) to clear all previously set values.

    minX

    The minimum horizontal scale value this Game Object can scale down to.

    minY

    The minimum vertical scale value this Game Object can scale down to.

    maxX

    The maximum horizontal scale value this Game Object can scale up to.

    maxY

    The maximum vertical scale value this Game Object can scale up to.

    Definition Classes
    ScaleMinMax
  65. var smoothed: Boolean

    Permalink

    Enable or disable texture smoothing for this Game Object.

    Enable or disable texture smoothing for this Game Object. It only takes effect if the Game Object is using an image based texture. Smoothing is enabled by default.

    Definition Classes
    Smoothed
  66. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  67. def toGlobal(position: pixijs.Point): pixijs.Point

    Permalink
    Definition Classes
    DisplayObject
  68. def toLocal(position: pixijs.Point, from: DisplayObject): pixijs.Point

    Permalink
    Definition Classes
    DisplayObject
  69. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  70. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  71. var top: Double

    Permalink

    The y coordinate of the Game Object.

    The y coordinate of the Game Object. This is the same as y - offsetY.

    Definition Classes
    Bounds
  72. var transformCallback: Function

    Permalink

    The callback that will apply any scale limiting to the worldTransform.

    The callback that will apply any scale limiting to the worldTransform.

    Definition Classes
    ScaleMinMax
  73. var transformCallbackContext: Object

    Permalink

    The context under which transformCallback is called.

    The context under which transformCallback is called.

    Definition Classes
    ScaleMinMax
  74. def type: Int

    Permalink

    The const type of this object.

  75. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  76. var visible: Boolean

    Permalink
    Definition Classes
    DisplayObject
  77. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  78. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  79. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  80. var width: Double

    Permalink
    Definition Classes
    Container
  81. var world: Phaser.Point

    Permalink

    The world coordinates of this Game Object in pixels.

    The world coordinates of this Game Object in pixels. Depending on where in the display list this Game Object is placed this value can differ from position, which contains the x/y coordinates relative to the Game Objects parent.

    Definition Classes
    Core
  82. def worldAlpha: Alpha

    Permalink
    Definition Classes
    Container
  83. def worldTransform: Matrix

    Permalink
    Definition Classes
    DisplayObject
  84. def worldVisible: Boolean

    Permalink
    Definition Classes
    DisplayObject
  85. var x: Double

    Permalink

    The x coordinate of the Image.

    The x coordinate of the Image. The coordinate is relative to any parent container this Image may be in.

    Definition Classes
    Image → DisplayObject
  86. var y: Double

    Permalink

    The y coordinate of the Image.

    The y coordinate of the Image. The coordinate is relative to any parent container this Image may be in.

    Definition Classes
    Image → DisplayObject
  87. var z: Double

    Permalink

    The z depth of this Game Object within its parent Group.

    The z depth of this Game Object within its parent Group. No two objects in a Group can have the same z value. This value is adjusted automatically whenever the Group hierarchy changes. If you wish to re-order the layering of a Game Object then see methods like Group.moveUp or Group.bringToTop.

    Definition Classes
    Core

Inherited from Smoothed

Inherited from ScaleMinMax

Inherited from Reset

Inherited from Overlap

Inherited from LoadTexture

Inherited from LifeSpan

Inherited from InputEnabled

Inherited from FixedToCamera

Inherited from Destroy

Inherited from Crop

Inherited from BringToTop

Inherited from Bounds

Inherited from AutoCull

Inherited from component.Animation

Inherited from Angle

Inherited from Core

Inherited from pixijs.Sprite

Inherited from Container

Inherited from DisplayObject

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped