import { PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from "xbsj-xe2/dist-node/xe2-base-utils"; import { SceneObjectKey } from "xbsj-xe2/dist-node/xe2-utils"; import { PlayerTracker } from "../MiscObjects"; import { ESSceneObject } from "../ESSceneObject"; import { GeoPathTracker } from "./GeoPathTracker"; export declare class GeoSceneObjectPathPlayerTracker extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { playerId: string; playerEvalFuncStr: string; pathId: string; targetObjId: string; usePosition: boolean; useRotation: boolean; targetPositionPropertyName: string; targetRotationPropertyName: string; positionDebug: boolean; rotationDebug: boolean; positionEvalFuncStr: string; rotationEvalFuncStr: string; execOnceFuncStr: string | undefined; updateFuncStr: string | undefined; toDestroyFuncStr: string | undefined; name: string; ref: string | undefined; devTags: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; enabled: boolean; }; get json(): JsonType; set json(value: JsonType); private _geoPathTracker; get geoPathTracker(): GeoPathTracker; private _playerTracker; get playerTracker(): PlayerTracker; /** * 强制执行 */ forceExecute(): void; constructor(id?: SceneObjectKey); getProperties(language?: string): import("../ESSceneObject").Property[]; } declare const extraComponentProps: { playerId: string; playerEvalFuncStr: string; pathId: string; targetObjId: string; usePosition: boolean; useRotation: boolean; targetPositionPropertyName: string; targetRotationPropertyName: string; positionDebug: boolean; rotationDebug: boolean; positionEvalFuncStr: string; rotationEvalFuncStr: string; }; export declare namespace GeoSceneObjectPathPlayerTracker { const createDefaultProps: () => { execOnceFuncStr: string | undefined; updateFuncStr: string | undefined; toDestroyFuncStr: string | undefined; name: string; ref: string | undefined; devTags: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; enabled: boolean; }; } export interface GeoSceneObjectPathPlayerTracker extends ReactivePropsToNativePropsAndChanged & typeof extraComponentProps> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & typeof extraComponentProps & { type: string; }>; export {};