- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
import { Texture } from '@pixi/core';
import { Mesh, MeshMaterial } from '@pixi/mesh';
import { PlaneGeometry } from './geometry/PlaneGeometry';
import type{ Renderer } from '@pixi/core';
import type { IDestroyOptions } from '@pixi/display';
/**
* The SimplePlane allows you to draw a texture across several points and then manipulate these points
*
*```js
* for (let i = 0; i < 20; i++) {
* points.push(new PIXI.Point(i * 50, 0));
* };
* let SimplePlane = new PIXI.SimplePlane(PIXI.Texture.from("snake.png"), points);
* ```
* @memberof PIXI
*/
export class SimplePlane extends Mesh
{
/** The geometry is automatically updated when the texture size changes. */
public autoResize: boolean;
protected _textureID: number;
/**
* @param texture - The texture to use on the SimplePlane.
* @param verticesX - The number of vertices in the x-axis
* @param verticesY - The number of vertices in the y-axis
*/
constructor(texture: Texture, verticesX?: number, verticesY?: number)
{
const planeGeometry = new PlaneGeometry(texture.width, texture.height, verticesX, verticesY);
const meshMaterial = new MeshMaterial(Texture.WHITE);
super(planeGeometry, meshMaterial);
// lets call the setter to ensure all necessary updates are performed
this.texture = texture;
this.autoResize = true;
}
/**
* Method used for overrides, to do something in case texture frame was changed.
* Meshes based on plane can override it and change more details based on texture.
*/
public textureUpdated(): void
{
this._textureID = this.shader.texture._updateID;
const geometry: PlaneGeometry = this.geometry as any;
const { width, height } = this.shader.texture;
if (this.autoResize && (geometry.width !== width || geometry.height !== height))
{
geometry.width = this.shader.texture.width;
geometry.height = this.shader.texture.height;
geometry.build();
}
}
set texture(value: Texture)
{
// Track texture same way sprite does.
// For generated meshes like NineSlicePlane it can change the geometry.
// Unfortunately, this method might not work if you directly change texture in material.
if (this.shader.texture === value)
{
return;
}
this.shader.texture = value;
this._textureID = -1;
if (value.baseTexture.valid)
{
this.textureUpdated();
}
else
{
value.once('update', this.textureUpdated, this);
}
}
get texture(): Texture
{
return this.shader.texture;
}
_render(renderer: Renderer): void
{
if (this._textureID !== this.shader.texture._updateID)
{
this.textureUpdated();
}
super._render(renderer);
}
public destroy(options?: IDestroyOptions | boolean): void
{
this.shader.texture.off('update', this.textureUpdated, this);
super.destroy(options);
}
}