10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
import { BasePart } from "./BasePart";
|
|
|
|
export class GlassesPart extends BasePart {
|
|
protected setSocketZIndex(): void {
|
|
if (this.socketNode) {
|
|
this.socketNode.setSiblingIndex(this.socketNode.parent.children.length);
|
|
}
|
|
}
|
|
}
|