Options
All
  • Public
  • Public/Protected
  • All
Menu

Class TilingSprite

Hierarchy

Implements

Index

Constructors

Properties

Methods

Constructors

constructor

Properties

Protected _anchor

Protected _bitmap

_bitmap: Bitmap

Protected _bounds

_bounds: Bounds

Protected _boundsID

_boundsID: number

Protected _boundsRect

_boundsRect: Rectangle

Protected _cacheAsBitmap

_cacheAsBitmap: boolean

Protected _cacheData

_cacheData: boolean

Protected _canvasPattern

_canvasPattern: CanvasPattern

Protected _destroyed

_destroyed: boolean

Protected _enabledFilters

_enabledFilters: Filter[] | null

Protected _filters

_filters: Filter[] | null

Protected _frame

_frame: Rectangle

Protected _height

_height: number

Protected _lastBoundsID

_lastBoundsID: number

Protected _localBoundsRect

_localBoundsRect: Rectangle

Protected _mask

_mask: Graphics | Sprite

Protected _texture

_texture: Texture

Protected _textureID

_textureID: number

Protected _textureTrimmedID

_textureTrimmedID: number

Protected _tint

_tint: number

Protected _tintRGB

_tintRGB: number

Protected _transformID

_transformID: number

Protected _transformTrimmedID

_transformTrimmedID: number

Protected _width

_width: number

accessible

accessible: boolean

accessibleHint

accessibleHint: string | null

accessibleTitle

accessibleTitle: string | null

alpha

alpha: number

anchor

bitmap

bitmap: Bitmap

The image for the tiling sprite.

property

bitmap

type

Bitmap

blendMode

blendMode: number

buttonMode

buttonMode: boolean

cacheAsBitmap

cacheAsBitmap: boolean

Protected cachedTint

cachedTint: number

children

children: DisplayObject[]

clampMargin

clampMargin: number

cursor

cursor: string

defaultCursor

defaultCursor: string

filterArea

filterArea: Rectangle

filters

filters: Filter[] | null

height

height: number

hitArea

interactive

interactive: boolean

interactiveChildren

interactiveChildren: boolean

localTransform

localTransform: Matrix

mask

name

name: string | null

Protected onChildrenChange

onChildrenChange: function

Type declaration

    • (...args: any[]): void
    • Parameters

      • Rest ...args: any[]

      Returns void

opacity

opacity: number

The opacity of the tiling sprite (0 to 255).

property

opacity

type

Number

origin

origin: Point

The origin point of the tiling sprite for scrolling.

property

origin

type

Point

parent

parent: Container

pivot

pluginName

pluginName: string

position

renderable

renderable: boolean

rotation

rotation: number

scale

skew

spriteId

spriteId: number

tabIndex

tabIndex: number

texture

texture: Texture

Protected textureDirty

textureDirty: boolean

tilePosition

tilePosition: Point | ObservablePoint

tileScale

tileScale: Point | ObservablePoint

tileTransform

tileTransform: TransformStatic

tint

tint: number

transform

transform: TransformBase

uvRespectAnchor

uvRespectAnchor: boolean

uvTransform

uvTransform: TextureTransform

vertexData

vertexData: Float32Array

Protected vertexTrimmedData

vertexTrimmedData: Float32Array

visibility

visibility: boolean

The visibility of the tiling sprite.

property

visible

type

Boolean

visible

visible: boolean

width

width: number

worldAlpha

worldAlpha: number

worldTransform

worldTransform: Matrix

worldVisible

worldVisible: boolean

x

x: number

The x coordinate of the tiling sprite.

property

x

type

Number

y

y: number

The y coordinate of the tiling sprite.

property

y

type

Number

Static EventEmitter

EventEmitter: object

Type declaration

  • constructor: function
    • Returns EventEmitter

  • prefixed: string | boolean

Static prefixed

prefixed: string | boolean

Methods

Protected _cacheAsBitmapDestroy

  • _cacheAsBitmapDestroy(options: boolean | any): void

Protected _calculateBounds

  • _calculateBounds(): void

Protected _calculateCachedBounds

Protected _destroyCachedDisplayObject

  • _destroyCachedDisplayObject(): void

Protected _getCachedLocalBounds

Protected _initCachedDisplayObject

Protected _initCachedDisplayObjectCanvas

Private _onBitmapLoad

  • _onBitmapLoad(): void

Protected _onTextureUpdate

  • _onTextureUpdate(): void

Protected _recursivePostUpdateTransform

  • _recursivePostUpdateTransform(): void

Private _refresh

  • _refresh(): void

Protected _renderCachedCanvas

Protected _renderCachedWebGL

Private _renderCanvas

Private _renderWebGL

addChild

  • addChild<T>(child: T, ...additionalChildren: DisplayObject[]): T

addChildAt

  • addChildAt<T>(child: T, index: number): T
  • Type parameters

    Parameters

    • child: T
    • index: number

    Returns T

addListener

calculateBounds

  • calculateBounds(): void

Protected calculateTrimmedVertices

  • calculateTrimmedVertices(): void

calculateVertices

  • calculateVertices(): void

Protected containerUpdateTransform

  • containerUpdateTransform(): void

containsPoint

  • containsPoint(point: Point): boolean

destroy

Protected displayObjectUpdateTransform

  • displayObjectUpdateTransform(): void

emit

  • emit(event: string | symbol, ...args: any[]): boolean
  • Calls each of the listeners registered for a given event.

    Parameters

    • event: string | symbol

      The event name.

    • Rest ...args: any[]

      Arguments that are passed to registered listeners

    Returns boolean

    true if the event had listeners, else false.

eventNames

  • eventNames(): Array<string | symbol>
  • Return an array listing the events for which the emitter has registered listeners.

    Returns Array<string | symbol>

getBounds

getChildAt

getChildByName

getChildIndex

getGlobalPosition

  • getGlobalPosition(point?: Point, skipUpdate?: boolean): Point

getLocalBounds

listeners

  • listeners(event: string | symbol): Function[]
  • listeners(event: string | symbol, exists: boolean): boolean
  • Return the listeners registered for a given event.

    Parameters

    • event: string | symbol

      The event name.

    Returns Function[]

  • Check if there listeners for a given event. If exists argument is not true lists listeners.

    Parameters

    • event: string | symbol

      The event name.

    • exists: boolean

      Only check if there are listeners.

    Returns boolean

move

  • move(x?: number, y?: number, width?: number, height?: number): void
  • Sets the x, y, width, and height all at once.

    method

    move

    Parameters

    • Optional x: number

      The x coordinate of the tiling sprite

    • Optional y: number

      The y coordinate of the tiling sprite

    • Optional width: number

      The width of the tiling sprite

    • Optional height: number

      The height of the tiling sprite

    Returns void

multiplyUvs

  • multiplyUvs(uvs: Float32Array, out: Float32Array): Float32Array
  • Parameters

    • uvs: Float32Array
    • out: Float32Array

    Returns Float32Array

off

  • off(event: "added" | "removed" | string, fn?: Function, context?: any): this
  • Parameters

    • event: "added" | "removed" | string
    • Optional fn: Function
    • Optional context: any

    Returns this

on

  • on(event: "added" | "removed", fn: function, context?: any): this
  • on(event: string, fn: Function, context?: any): this
  • Parameters

    • event: "added" | "removed"
    • fn: function
    • Optional context: any

    Returns this

  • Parameters

    • event: string
    • fn: Function
    • Optional context: any

    Returns this

Protected onAnchorUpdate

  • onAnchorUpdate(): void
  • Returns void

once

  • once(event: "added" | "removed", fn: function, context?: any): this
  • once(event: string, fn: Function, context?: any): this
  • Parameters

    • event: "added" | "removed"
    • fn: function
    • Optional context: any

    Returns this

  • Parameters

    • event: string
    • fn: Function
    • Optional context: any

    Returns this

removeAllListeners

removeChild

removeChildAt

removeChildren

  • removeChildren(beginIndex?: number, endIndex?: number): DisplayObject[]
  • Parameters

    • Optional beginIndex: number
    • Optional endIndex: number

    Returns DisplayObject[]

removeListener

renderAdvancedWebGL

renderCanvas

renderWebGL

setChildIndex

setFrame

  • setFrame(x: number, y: number, width: number, height: number): void
  • Specifies the region of the image that the tiling sprite will use.

    method

    setFrame

    Parameters

    • x: number

      The x coordinate of the frame

    • y: number

      The y coordinate of the frame

    • width: number

      The width of the frame

    • height: number

      The height of the frame

    Returns void

setMaxListeners

  • setMaxListeners(): this
  • This function doesn't apply anymore.

    deprecated

    Returns this

setParent

setTransform

  • setTransform(x?: number, y?: number, scaleX?: number, scaleY?: number, rotation?: number, skewX?: number, skewY?: number, pivotX?: number, pivotY?: number): DisplayObject
  • Parameters

    • Optional x: number
    • Optional y: number
    • Optional scaleX: number
    • Optional scaleY: number
    • Optional rotation: number
    • Optional skewX: number
    • Optional skewY: number
    • Optional pivotX: number
    • Optional pivotY: number

    Returns DisplayObject

swapChildren

toGlobal

toLocal

trackedPointers

  • trackedPointers(): object

update

  • update(): void

Private updateTransform

  • updateTransform(): void

updateTransformTS

  • updateTransformTS(): void

Static from

  • from(source: number | string | BaseTexture | HTMLCanvasElement | HTMLVideoElement, width?: number, height?: number): TilingSprite
  • Parameters

    • source: number | string | BaseTexture | HTMLCanvasElement | HTMLVideoElement
    • Optional width: number
    • Optional height: number

    Returns TilingSprite

Static fromFrame

  • fromFrame(frameId: string, width?: number, height?: number): TilingSprite

Static fromImage

  • fromImage(imageId: string, crossorigin?: boolean, scaleMode?: number): Sprite
  • fromImage(imageId: string, width?: number, height?: number, crossorigin?: boolean, scaleMode?: number): TilingSprite
  • Parameters

    • imageId: string
    • Optional crossorigin: boolean
    • Optional scaleMode: number

    Returns Sprite

  • Parameters

    • imageId: string
    • Optional width: number
    • Optional height: number
    • Optional crossorigin: boolean
    • Optional scaleMode: number

    Returns TilingSprite

Generated using TypeDoc