- 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
import { LineStyle } from '@pixi/graphics';
export class DashedLineStyle extends LineStyle
{
/**
* The dashing pattern of dashes and gaps to stroke paths.
*/
public dashArray: number[] = null;
/**
* The distance into the dash pattern to start from.
*/
public dashOffset = 0;
/**
* @override
*/
public clone(): DashedLineStyle
{
const obj = super.clone() as DashedLineStyle;
obj.dashArray = this.dashArray ? [...this.dashArray] : null;
obj.dashOffset = this.dashOffset;
return obj;
}
/**
* @override
*/
public reset(): void
{
super.reset();
this.dashArray = null;
this.dashOffset = 0;
}
}