You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-19 23:16:20 +00:00
Move to Renderer V2
This commit is contained in:
@@ -0,0 +1,88 @@
|
||||
import { Container, Point } from 'pixi.js';
|
||||
|
||||
export class AvatarImageBodyPartContainer
|
||||
{
|
||||
private _image: Container;
|
||||
private _regPoint: Point;
|
||||
private _offset: Point;
|
||||
private _isCacheable: boolean;
|
||||
|
||||
constructor(k: Container, _arg_2: Point, _arg_3: boolean)
|
||||
{
|
||||
this._image = k;
|
||||
this._regPoint = _arg_2;
|
||||
this._offset = new Point(0, 0);
|
||||
this._regPoint = _arg_2;
|
||||
this._isCacheable = _arg_3;
|
||||
|
||||
this.cleanPoints();
|
||||
}
|
||||
|
||||
public dispose(): void
|
||||
{
|
||||
if(this._image)
|
||||
{
|
||||
this._image.destroy({
|
||||
children: true
|
||||
});
|
||||
}
|
||||
|
||||
this._image = null;
|
||||
this._regPoint = null;
|
||||
this._offset = null;
|
||||
}
|
||||
|
||||
private cleanPoints(): void
|
||||
{
|
||||
// this._regPoint.x = this._regPoint.x;
|
||||
// this._regPoint.y = this._regPoint.y;
|
||||
// this._offset.x = this._offset.x;
|
||||
// this._offset.y = this._offset.y;
|
||||
}
|
||||
|
||||
public setRegPoint(k: Point): void
|
||||
{
|
||||
this._regPoint = k;
|
||||
|
||||
this.cleanPoints();
|
||||
}
|
||||
|
||||
public get image(): Container
|
||||
{
|
||||
return this._image;
|
||||
}
|
||||
|
||||
public set image(k: Container)
|
||||
{
|
||||
if(this._image && (this._image !== k))
|
||||
{
|
||||
this._image.destroy({
|
||||
children: true
|
||||
});
|
||||
}
|
||||
|
||||
this._image = k;
|
||||
}
|
||||
|
||||
public get regPoint(): Point
|
||||
{
|
||||
const clone = this._regPoint.clone();
|
||||
|
||||
clone.x += this._offset.x;
|
||||
clone.y += this._offset.y;
|
||||
|
||||
return clone;
|
||||
}
|
||||
|
||||
public set offset(k: Point)
|
||||
{
|
||||
this._offset = k;
|
||||
|
||||
this.cleanPoints();
|
||||
}
|
||||
|
||||
public get isCacheable(): boolean
|
||||
{
|
||||
return this._isCacheable;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user