51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
12 lines (11 loc) • 514 B
TypeScript
import { ResultType, CoordType, RotatorType, ScaleType } from '../common/data-type';
declare class TransformAtomController {
private apiClassName;
private obj;
constructor(obj: any);
SetLocation(eid: string, location: CoordType): Promise<ResultType>;
SetRotator(eid: string, rotator: RotatorType): Promise<ResultType>;
SetScale3d(eid: string, scale3d: ScaleType): Promise<ResultType>;
GetTransform(eid: string): Promise<ResultType>;
}
export default TransformAtomController;