@minecraft/creator-tools
Version:
Minecraft Creator Tools command line and libraries.
13 lines (12 loc) • 359 B
TypeScript
import IAnchorData from "./IAnchorData";
import IVector3 from "./IVector3";
export default class Anchor {
data: IAnchorData;
get from(): IVector3;
set from(newFrom: IVector3);
get to(): IVector3 | undefined;
set to(newTo: IVector3 | undefined);
get name(): string;
set name(newName: string);
constructor(data?: IAnchorData);
}