neos-script
Version:
[neos-script-sample](https://github.com/rheniumNV/neos-script-sample)
19 lines • 75.2 kB
JavaScript
"use strict";
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.VRIKAvatar = void 0;
var jsx_runtime_1 = require("neos-script/jsx-runtime");
var core_1 = require("../../core");
function VRIKAvatar(props) {
var id = props.id, persistentId = props.persistentId, updateOrder = props.updateOrder, Enabled = props.Enabled, IK = props.IK, HeightCompensation = props.HeightCompensation, AvatarHeight = props.AvatarHeight, UserResizeThreshold = props.UserResizeThreshold, FeetIgnoreOtherPlayers = props.FeetIgnoreOtherPlayers, FeetCollisionListMode = props.FeetCollisionListMode, FeetCollisionList = props.FeetCollisionList, HeadMaxFixDistance = props.HeadMaxFixDistance, ForceUseFeetProxies = props.ForceUseFeetProxies, ForceUsePelvisProxy = props.ForceUsePelvisProxy, ForceUseChestProxy = props.ForceUseChestProxy, ForceUseElbowProxies = props.ForceUseElbowProxies, ForceUseKneeProxies = props.ForceUseKneeProxies, FeetCalibrated = props.FeetCalibrated, PelvisCalibrated = props.PelvisCalibrated, GroundCheckHeightRatio = props.GroundCheckHeightRatio, FeetHoverHeight = props.FeetHoverHeight, FeetHoverSmoothSpeed = props.FeetHoverSmoothSpeed, MinFeetTransitionSpeed = props.MinFeetTransitionSpeed, MaxFeetTransitionSpeed = props.MaxFeetTransitionSpeed, GaitFeetTransitionSpeedMultiplier = props.GaitFeetTransitionSpeedMultiplier, FeetHoverTilt = props.FeetHoverTilt, LeftFootFloatOffset = props.LeftFootFloatOffset, RightFootFloatOffset = props.RightFootFloatOffset, LeftFootRootHeight = props.LeftFootRootHeight, RightFootRootHeight = props.RightFootRootHeight, FootFloatSpeed = props.FootFloatSpeed, FootFloatAngleMagnitude = props.FootFloatAngleMagnitude, FootFloatOffsetMagnitude = props.FootFloatOffsetMagnitude, FeetFloatVelocityForce = props.FeetFloatVelocityForce, FeetFloatVelocityDampeningSpeed = props.FeetFloatVelocityDampeningSpeed, MaxFeetVelocityOffset = props.MaxFeetVelocityOffset, VelocityAverageRate = props.VelocityAverageRate, HoverVelocityThreshold = props.HoverVelocityThreshold, HorizontalBodyAngle = props.HorizontalBodyAngle, SupressWalkAnimationWhenHorizontal = props.SupressWalkAnimationWhenHorizontal, AlwaysUseTrackersWhenHorizontal = props.AlwaysUseTrackersWhenHorizontal, Gaits = props.Gaits, GaitTransitionSpeed = props.GaitTransitionSpeed, GaitMovementDirectionSmoothSpeed = props.GaitMovementDirectionSmoothSpeed, RigCollidersRadiusRatio = props.RigCollidersRadiusRatio, LeftHandRotationOffset = props.LeftHandRotationOffset, RightHandRotationOffset = props.RightHandRotationOffset, CurrentAverageVelocity = props.CurrentAverageVelocity, CurrentOnGround = props.CurrentOnGround, CurrentGaitIndex = props.CurrentGaitIndex, _locomotionController = props._locomotionController, _leftHandNode = props._leftHandNode, _rightHandNode = props._rightHandNode, _leftElbowNode = props._leftElbowNode, _rightElbowNode = props._rightElbowNode, _leftFootNode = props._leftFootNode, _rightFootNode = props._rightFootNode, _leftKneeNode = props._leftKneeNode, _rightKneeNode = props._rightKneeNode, _headNode = props._headNode, _pelvisNode = props._pelvisNode, _chestNode = props._chestNode, _headProxy = props._headProxy, _pelvisProxy = props._pelvisProxy, _chestProxy = props._chestProxy, _leftHandProxy = props._leftHandProxy, _rightHandProxy = props._rightHandProxy, _leftElbowProxy = props._leftElbowProxy, _rightElbowProxy = props._rightElbowProxy, _leftFootProxy = props._leftFootProxy, _rightFootProxy = props._rightFootProxy, _leftKneeProxy = props._leftKneeProxy, _rightKneeProxy = props._rightKneeProxy, _leftKneeDefaultProxy = props._leftKneeDefaultProxy, _rightKneeDefaultProxy = props._rightKneeDefaultProxy, _headTargetPos = props._headTargetPos, _headTargetRot = props._headTargetRot, _pelvisTargetPos = props._pelvisTargetPos, _pelvisTargetRot = props._pelvisTargetRot, _chestTargetPos = props._chestTargetPos, _leftHandTargetPos = props._leftHandTargetPos, _leftHandTargetRot = props._leftHandTargetRot, _rightHandTargetPos = props._rightHandTargetPos, _rightHandTargetRot = props._rightHandTargetRot, _leftElbowTargetPos = props._leftElbowTargetPos, _rightElbowTargetPos = props._rightElbowTargetPos, _leftFootTargetPos = props._leftFootTargetPos, _leftFootTargetRot = props._leftFootTargetRot, _rightFootTargetPos = props._rightFootTargetPos, _rightFootTargetRot = props._rightFootTargetRot, _leftKneeTargetPos = props._leftKneeTargetPos, _rightKneeTargetPos = props._rightKneeTargetPos, _pelvisPositionWeight = props._pelvisPositionWeight, _pelvisRotationWeight = props._pelvisRotationWeight, _chestWeight = props._chestWeight, _locomotionWeight = props._locomotionWeight, _leftLegPositionWeight = props._leftLegPositionWeight, _leftLegRotationWeight = props._leftLegRotationWeight, _rightLegPositionWeight = props._rightLegPositionWeight, _rightLegRotationWeight = props._rightLegRotationWeight, _leftKneeBendWeight = props._leftKneeBendWeight, _rightKneeBendWeight = props._rightKneeBendWeight, _leftElbowBendWeight = props._leftElbowBendWeight, _rightElbowBendWeight = props._rightElbowBendWeight, _leftFootOffset = props._leftFootOffset, _rightFootOffset = props._rightFootOffset, _leftFootRelativeToRoot = props._leftFootRelativeToRoot, _rightFootRelativeToRoot = props._rightFootRelativeToRoot, _locomotionOffset = props._locomotionOffset, _simplifiedColliderEnabled = props._simplifiedColliderEnabled, _rigCollidersEnabledStates = props._rigCollidersEnabledStates, _horizontalTrackingLocked = props._horizontalTrackingLocked;
return ((0, jsx_runtime_1.jsxs)(core_1.Component, __assign({ type: "FrooxEngine.FinalIK.VRIKAvatar", id: id, persistentId: persistentId, updateOrder: updateOrder, version: 21 }, { children: [(0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Boolean]", name: "Enabled", id: typeof Enabled === "object" && "id" in Enabled ? Enabled === null || Enabled === void 0 ? void 0 : Enabled.id : undefined, value: typeof Enabled === "object" && "value" in Enabled ? Enabled === null || Enabled === void 0 ? void 0 : Enabled.value : Enabled !== null && Enabled !== void 0 ? Enabled : true, isRaw: typeof Enabled === "object" && "isRaw" in Enabled && Enabled.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.FinalIK.VRIK]", name: "IK", id: typeof IK === "object" && "id" in IK ? IK === null || IK === void 0 ? void 0 : IK.id : undefined, value: typeof IK === "object" && "value" in IK ? IK === null || IK === void 0 ? void 0 : IK.value : IK, isRaw: typeof IK === "object" && "isRaw" in IK && IK.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "HeightCompensation", id: typeof HeightCompensation === "object" && "id" in HeightCompensation ? HeightCompensation === null || HeightCompensation === void 0 ? void 0 : HeightCompensation.id : undefined, value: typeof HeightCompensation === "object" && "value" in HeightCompensation ? HeightCompensation === null || HeightCompensation === void 0 ? void 0 : HeightCompensation.value : HeightCompensation, isRaw: typeof HeightCompensation === "object" && "isRaw" in HeightCompensation && HeightCompensation.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "AvatarHeight", id: typeof AvatarHeight === "object" && "id" in AvatarHeight ? AvatarHeight === null || AvatarHeight === void 0 ? void 0 : AvatarHeight.id : undefined, value: typeof AvatarHeight === "object" && "value" in AvatarHeight ? AvatarHeight === null || AvatarHeight === void 0 ? void 0 : AvatarHeight.value : AvatarHeight, isRaw: typeof AvatarHeight === "object" && "isRaw" in AvatarHeight && AvatarHeight.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "UserResizeThreshold", id: typeof UserResizeThreshold === "object" && "id" in UserResizeThreshold ? UserResizeThreshold === null || UserResizeThreshold === void 0 ? void 0 : UserResizeThreshold.id : undefined, value: typeof UserResizeThreshold === "object" && "value" in UserResizeThreshold ? UserResizeThreshold === null || UserResizeThreshold === void 0 ? void 0 : UserResizeThreshold.value : UserResizeThreshold, isRaw: typeof UserResizeThreshold === "object" && "isRaw" in UserResizeThreshold && UserResizeThreshold.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Boolean]", name: "FeetIgnoreOtherPlayers", id: typeof FeetIgnoreOtherPlayers === "object" && "id" in FeetIgnoreOtherPlayers ? FeetIgnoreOtherPlayers === null || FeetIgnoreOtherPlayers === void 0 ? void 0 : FeetIgnoreOtherPlayers.id : undefined, value: typeof FeetIgnoreOtherPlayers === "object" && "value" in FeetIgnoreOtherPlayers ? FeetIgnoreOtherPlayers === null || FeetIgnoreOtherPlayers === void 0 ? void 0 : FeetIgnoreOtherPlayers.value : FeetIgnoreOtherPlayers, isRaw: typeof FeetIgnoreOtherPlayers === "object" && "isRaw" in FeetIgnoreOtherPlayers && FeetIgnoreOtherPlayers.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[FrooxEngine.ListFilterMode]", name: "FeetCollisionListMode", id: typeof FeetCollisionListMode === "object" && "id" in FeetCollisionListMode ? FeetCollisionListMode === null || FeetCollisionListMode === void 0 ? void 0 : FeetCollisionListMode.id : undefined, value: typeof FeetCollisionListMode === "object" && "value" in FeetCollisionListMode ? FeetCollisionListMode === null || FeetCollisionListMode === void 0 ? void 0 : FeetCollisionListMode.value : FeetCollisionListMode, isRaw: typeof FeetCollisionListMode === "object" && "isRaw" in FeetCollisionListMode && FeetCollisionListMode.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRefList`1[FrooxEngine.Slot]", name: "FeetCollisionList", id: typeof FeetCollisionList === "object" && "id" in FeetCollisionList ? FeetCollisionList === null || FeetCollisionList === void 0 ? void 0 : FeetCollisionList.id : undefined, value: typeof FeetCollisionList === "object" && "value" in FeetCollisionList ? FeetCollisionList === null || FeetCollisionList === void 0 ? void 0 : FeetCollisionList.value : FeetCollisionList, isRaw: typeof FeetCollisionList === "object" && "isRaw" in FeetCollisionList && FeetCollisionList.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "HeadMaxFixDistance", id: typeof HeadMaxFixDistance === "object" && "id" in HeadMaxFixDistance ? HeadMaxFixDistance === null || HeadMaxFixDistance === void 0 ? void 0 : HeadMaxFixDistance.id : undefined, value: typeof HeadMaxFixDistance === "object" && "value" in HeadMaxFixDistance ? HeadMaxFixDistance === null || HeadMaxFixDistance === void 0 ? void 0 : HeadMaxFixDistance.value : HeadMaxFixDistance, isRaw: typeof HeadMaxFixDistance === "object" && "isRaw" in HeadMaxFixDistance && HeadMaxFixDistance.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Boolean]", name: "ForceUseFeetProxies", id: typeof ForceUseFeetProxies === "object" && "id" in ForceUseFeetProxies ? ForceUseFeetProxies === null || ForceUseFeetProxies === void 0 ? void 0 : ForceUseFeetProxies.id : undefined, value: typeof ForceUseFeetProxies === "object" && "value" in ForceUseFeetProxies ? ForceUseFeetProxies === null || ForceUseFeetProxies === void 0 ? void 0 : ForceUseFeetProxies.value : ForceUseFeetProxies, isRaw: typeof ForceUseFeetProxies === "object" && "isRaw" in ForceUseFeetProxies && ForceUseFeetProxies.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Boolean]", name: "ForceUsePelvisProxy", id: typeof ForceUsePelvisProxy === "object" && "id" in ForceUsePelvisProxy ? ForceUsePelvisProxy === null || ForceUsePelvisProxy === void 0 ? void 0 : ForceUsePelvisProxy.id : undefined, value: typeof ForceUsePelvisProxy === "object" && "value" in ForceUsePelvisProxy ? ForceUsePelvisProxy === null || ForceUsePelvisProxy === void 0 ? void 0 : ForceUsePelvisProxy.value : ForceUsePelvisProxy, isRaw: typeof ForceUsePelvisProxy === "object" && "isRaw" in ForceUsePelvisProxy && ForceUsePelvisProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Boolean]", name: "ForceUseChestProxy", id: typeof ForceUseChestProxy === "object" && "id" in ForceUseChestProxy ? ForceUseChestProxy === null || ForceUseChestProxy === void 0 ? void 0 : ForceUseChestProxy.id : undefined, value: typeof ForceUseChestProxy === "object" && "value" in ForceUseChestProxy ? ForceUseChestProxy === null || ForceUseChestProxy === void 0 ? void 0 : ForceUseChestProxy.value : ForceUseChestProxy, isRaw: typeof ForceUseChestProxy === "object" && "isRaw" in ForceUseChestProxy && ForceUseChestProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Boolean]", name: "ForceUseElbowProxies", id: typeof ForceUseElbowProxies === "object" && "id" in ForceUseElbowProxies ? ForceUseElbowProxies === null || ForceUseElbowProxies === void 0 ? void 0 : ForceUseElbowProxies.id : undefined, value: typeof ForceUseElbowProxies === "object" && "value" in ForceUseElbowProxies ? ForceUseElbowProxies === null || ForceUseElbowProxies === void 0 ? void 0 : ForceUseElbowProxies.value : ForceUseElbowProxies, isRaw: typeof ForceUseElbowProxies === "object" && "isRaw" in ForceUseElbowProxies && ForceUseElbowProxies.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Boolean]", name: "ForceUseKneeProxies", id: typeof ForceUseKneeProxies === "object" && "id" in ForceUseKneeProxies ? ForceUseKneeProxies === null || ForceUseKneeProxies === void 0 ? void 0 : ForceUseKneeProxies.id : undefined, value: typeof ForceUseKneeProxies === "object" && "value" in ForceUseKneeProxies ? ForceUseKneeProxies === null || ForceUseKneeProxies === void 0 ? void 0 : ForceUseKneeProxies.value : ForceUseKneeProxies, isRaw: typeof ForceUseKneeProxies === "object" && "isRaw" in ForceUseKneeProxies && ForceUseKneeProxies.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Boolean]", name: "FeetCalibrated", id: typeof FeetCalibrated === "object" && "id" in FeetCalibrated ? FeetCalibrated === null || FeetCalibrated === void 0 ? void 0 : FeetCalibrated.id : undefined, value: typeof FeetCalibrated === "object" && "value" in FeetCalibrated ? FeetCalibrated === null || FeetCalibrated === void 0 ? void 0 : FeetCalibrated.value : FeetCalibrated, isRaw: typeof FeetCalibrated === "object" && "isRaw" in FeetCalibrated && FeetCalibrated.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Boolean]", name: "PelvisCalibrated", id: typeof PelvisCalibrated === "object" && "id" in PelvisCalibrated ? PelvisCalibrated === null || PelvisCalibrated === void 0 ? void 0 : PelvisCalibrated.id : undefined, value: typeof PelvisCalibrated === "object" && "value" in PelvisCalibrated ? PelvisCalibrated === null || PelvisCalibrated === void 0 ? void 0 : PelvisCalibrated.value : PelvisCalibrated, isRaw: typeof PelvisCalibrated === "object" && "isRaw" in PelvisCalibrated && PelvisCalibrated.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "GroundCheckHeightRatio", id: typeof GroundCheckHeightRatio === "object" && "id" in GroundCheckHeightRatio ? GroundCheckHeightRatio === null || GroundCheckHeightRatio === void 0 ? void 0 : GroundCheckHeightRatio.id : undefined, value: typeof GroundCheckHeightRatio === "object" && "value" in GroundCheckHeightRatio ? GroundCheckHeightRatio === null || GroundCheckHeightRatio === void 0 ? void 0 : GroundCheckHeightRatio.value : GroundCheckHeightRatio, isRaw: typeof GroundCheckHeightRatio === "object" && "isRaw" in GroundCheckHeightRatio && GroundCheckHeightRatio.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "FeetHoverHeight", id: typeof FeetHoverHeight === "object" && "id" in FeetHoverHeight ? FeetHoverHeight === null || FeetHoverHeight === void 0 ? void 0 : FeetHoverHeight.id : undefined, value: typeof FeetHoverHeight === "object" && "value" in FeetHoverHeight ? FeetHoverHeight === null || FeetHoverHeight === void 0 ? void 0 : FeetHoverHeight.value : FeetHoverHeight, isRaw: typeof FeetHoverHeight === "object" && "isRaw" in FeetHoverHeight && FeetHoverHeight.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "FeetHoverSmoothSpeed", id: typeof FeetHoverSmoothSpeed === "object" && "id" in FeetHoverSmoothSpeed ? FeetHoverSmoothSpeed === null || FeetHoverSmoothSpeed === void 0 ? void 0 : FeetHoverSmoothSpeed.id : undefined, value: typeof FeetHoverSmoothSpeed === "object" && "value" in FeetHoverSmoothSpeed ? FeetHoverSmoothSpeed === null || FeetHoverSmoothSpeed === void 0 ? void 0 : FeetHoverSmoothSpeed.value : FeetHoverSmoothSpeed, isRaw: typeof FeetHoverSmoothSpeed === "object" && "isRaw" in FeetHoverSmoothSpeed && FeetHoverSmoothSpeed.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "MinFeetTransitionSpeed", id: typeof MinFeetTransitionSpeed === "object" && "id" in MinFeetTransitionSpeed ? MinFeetTransitionSpeed === null || MinFeetTransitionSpeed === void 0 ? void 0 : MinFeetTransitionSpeed.id : undefined, value: typeof MinFeetTransitionSpeed === "object" && "value" in MinFeetTransitionSpeed ? MinFeetTransitionSpeed === null || MinFeetTransitionSpeed === void 0 ? void 0 : MinFeetTransitionSpeed.value : MinFeetTransitionSpeed, isRaw: typeof MinFeetTransitionSpeed === "object" && "isRaw" in MinFeetTransitionSpeed && MinFeetTransitionSpeed.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "MaxFeetTransitionSpeed", id: typeof MaxFeetTransitionSpeed === "object" && "id" in MaxFeetTransitionSpeed ? MaxFeetTransitionSpeed === null || MaxFeetTransitionSpeed === void 0 ? void 0 : MaxFeetTransitionSpeed.id : undefined, value: typeof MaxFeetTransitionSpeed === "object" && "value" in MaxFeetTransitionSpeed ? MaxFeetTransitionSpeed === null || MaxFeetTransitionSpeed === void 0 ? void 0 : MaxFeetTransitionSpeed.value : MaxFeetTransitionSpeed, isRaw: typeof MaxFeetTransitionSpeed === "object" && "isRaw" in MaxFeetTransitionSpeed && MaxFeetTransitionSpeed.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "GaitFeetTransitionSpeedMultiplier", id: typeof GaitFeetTransitionSpeedMultiplier === "object" && "id" in GaitFeetTransitionSpeedMultiplier ? GaitFeetTransitionSpeedMultiplier === null || GaitFeetTransitionSpeedMultiplier === void 0 ? void 0 : GaitFeetTransitionSpeedMultiplier.id : undefined, value: typeof GaitFeetTransitionSpeedMultiplier === "object" && "value" in GaitFeetTransitionSpeedMultiplier ? GaitFeetTransitionSpeedMultiplier === null || GaitFeetTransitionSpeedMultiplier === void 0 ? void 0 : GaitFeetTransitionSpeedMultiplier.value : GaitFeetTransitionSpeedMultiplier, isRaw: typeof GaitFeetTransitionSpeedMultiplier === "object" && "isRaw" in GaitFeetTransitionSpeedMultiplier && GaitFeetTransitionSpeedMultiplier.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "FeetHoverTilt", id: typeof FeetHoverTilt === "object" && "id" in FeetHoverTilt ? FeetHoverTilt === null || FeetHoverTilt === void 0 ? void 0 : FeetHoverTilt.id : undefined, value: typeof FeetHoverTilt === "object" && "value" in FeetHoverTilt ? FeetHoverTilt === null || FeetHoverTilt === void 0 ? void 0 : FeetHoverTilt.value : FeetHoverTilt, isRaw: typeof FeetHoverTilt === "object" && "isRaw" in FeetHoverTilt && FeetHoverTilt.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[BaseX.float3]", name: "LeftFootFloatOffset", id: typeof LeftFootFloatOffset === "object" && "id" in LeftFootFloatOffset ? LeftFootFloatOffset === null || LeftFootFloatOffset === void 0 ? void 0 : LeftFootFloatOffset.id : undefined, value: typeof LeftFootFloatOffset === "object" && "value" in LeftFootFloatOffset ? LeftFootFloatOffset === null || LeftFootFloatOffset === void 0 ? void 0 : LeftFootFloatOffset.value : LeftFootFloatOffset, isRaw: typeof LeftFootFloatOffset === "object" && "isRaw" in LeftFootFloatOffset && LeftFootFloatOffset.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[BaseX.float3]", name: "RightFootFloatOffset", id: typeof RightFootFloatOffset === "object" && "id" in RightFootFloatOffset ? RightFootFloatOffset === null || RightFootFloatOffset === void 0 ? void 0 : RightFootFloatOffset.id : undefined, value: typeof RightFootFloatOffset === "object" && "value" in RightFootFloatOffset ? RightFootFloatOffset === null || RightFootFloatOffset === void 0 ? void 0 : RightFootFloatOffset.value : RightFootFloatOffset, isRaw: typeof RightFootFloatOffset === "object" && "isRaw" in RightFootFloatOffset && RightFootFloatOffset.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "LeftFootRootHeight", id: typeof LeftFootRootHeight === "object" && "id" in LeftFootRootHeight ? LeftFootRootHeight === null || LeftFootRootHeight === void 0 ? void 0 : LeftFootRootHeight.id : undefined, value: typeof LeftFootRootHeight === "object" && "value" in LeftFootRootHeight ? LeftFootRootHeight === null || LeftFootRootHeight === void 0 ? void 0 : LeftFootRootHeight.value : LeftFootRootHeight, isRaw: typeof LeftFootRootHeight === "object" && "isRaw" in LeftFootRootHeight && LeftFootRootHeight.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "RightFootRootHeight", id: typeof RightFootRootHeight === "object" && "id" in RightFootRootHeight ? RightFootRootHeight === null || RightFootRootHeight === void 0 ? void 0 : RightFootRootHeight.id : undefined, value: typeof RightFootRootHeight === "object" && "value" in RightFootRootHeight ? RightFootRootHeight === null || RightFootRootHeight === void 0 ? void 0 : RightFootRootHeight.value : RightFootRootHeight, isRaw: typeof RightFootRootHeight === "object" && "isRaw" in RightFootRootHeight && RightFootRootHeight.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "FootFloatSpeed", id: typeof FootFloatSpeed === "object" && "id" in FootFloatSpeed ? FootFloatSpeed === null || FootFloatSpeed === void 0 ? void 0 : FootFloatSpeed.id : undefined, value: typeof FootFloatSpeed === "object" && "value" in FootFloatSpeed ? FootFloatSpeed === null || FootFloatSpeed === void 0 ? void 0 : FootFloatSpeed.value : FootFloatSpeed, isRaw: typeof FootFloatSpeed === "object" && "isRaw" in FootFloatSpeed && FootFloatSpeed.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "FootFloatAngleMagnitude", id: typeof FootFloatAngleMagnitude === "object" && "id" in FootFloatAngleMagnitude ? FootFloatAngleMagnitude === null || FootFloatAngleMagnitude === void 0 ? void 0 : FootFloatAngleMagnitude.id : undefined, value: typeof FootFloatAngleMagnitude === "object" && "value" in FootFloatAngleMagnitude ? FootFloatAngleMagnitude === null || FootFloatAngleMagnitude === void 0 ? void 0 : FootFloatAngleMagnitude.value : FootFloatAngleMagnitude, isRaw: typeof FootFloatAngleMagnitude === "object" && "isRaw" in FootFloatAngleMagnitude && FootFloatAngleMagnitude.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "FootFloatOffsetMagnitude", id: typeof FootFloatOffsetMagnitude === "object" && "id" in FootFloatOffsetMagnitude ? FootFloatOffsetMagnitude === null || FootFloatOffsetMagnitude === void 0 ? void 0 : FootFloatOffsetMagnitude.id : undefined, value: typeof FootFloatOffsetMagnitude === "object" && "value" in FootFloatOffsetMagnitude ? FootFloatOffsetMagnitude === null || FootFloatOffsetMagnitude === void 0 ? void 0 : FootFloatOffsetMagnitude.value : FootFloatOffsetMagnitude, isRaw: typeof FootFloatOffsetMagnitude === "object" && "isRaw" in FootFloatOffsetMagnitude && FootFloatOffsetMagnitude.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "FeetFloatVelocityForce", id: typeof FeetFloatVelocityForce === "object" && "id" in FeetFloatVelocityForce ? FeetFloatVelocityForce === null || FeetFloatVelocityForce === void 0 ? void 0 : FeetFloatVelocityForce.id : undefined, value: typeof FeetFloatVelocityForce === "object" && "value" in FeetFloatVelocityForce ? FeetFloatVelocityForce === null || FeetFloatVelocityForce === void 0 ? void 0 : FeetFloatVelocityForce.value : FeetFloatVelocityForce, isRaw: typeof FeetFloatVelocityForce === "object" && "isRaw" in FeetFloatVelocityForce && FeetFloatVelocityForce.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "FeetFloatVelocityDampeningSpeed", id: typeof FeetFloatVelocityDampeningSpeed === "object" && "id" in FeetFloatVelocityDampeningSpeed ? FeetFloatVelocityDampeningSpeed === null || FeetFloatVelocityDampeningSpeed === void 0 ? void 0 : FeetFloatVelocityDampeningSpeed.id : undefined, value: typeof FeetFloatVelocityDampeningSpeed === "object" && "value" in FeetFloatVelocityDampeningSpeed ? FeetFloatVelocityDampeningSpeed === null || FeetFloatVelocityDampeningSpeed === void 0 ? void 0 : FeetFloatVelocityDampeningSpeed.value : FeetFloatVelocityDampeningSpeed, isRaw: typeof FeetFloatVelocityDampeningSpeed === "object" && "isRaw" in FeetFloatVelocityDampeningSpeed && FeetFloatVelocityDampeningSpeed.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "MaxFeetVelocityOffset", id: typeof MaxFeetVelocityOffset === "object" && "id" in MaxFeetVelocityOffset ? MaxFeetVelocityOffset === null || MaxFeetVelocityOffset === void 0 ? void 0 : MaxFeetVelocityOffset.id : undefined, value: typeof MaxFeetVelocityOffset === "object" && "value" in MaxFeetVelocityOffset ? MaxFeetVelocityOffset === null || MaxFeetVelocityOffset === void 0 ? void 0 : MaxFeetVelocityOffset.value : MaxFeetVelocityOffset, isRaw: typeof MaxFeetVelocityOffset === "object" && "isRaw" in MaxFeetVelocityOffset && MaxFeetVelocityOffset.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "VelocityAverageRate", id: typeof VelocityAverageRate === "object" && "id" in VelocityAverageRate ? VelocityAverageRate === null || VelocityAverageRate === void 0 ? void 0 : VelocityAverageRate.id : undefined, value: typeof VelocityAverageRate === "object" && "value" in VelocityAverageRate ? VelocityAverageRate === null || VelocityAverageRate === void 0 ? void 0 : VelocityAverageRate.value : VelocityAverageRate, isRaw: typeof VelocityAverageRate === "object" && "isRaw" in VelocityAverageRate && VelocityAverageRate.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "HoverVelocityThreshold", id: typeof HoverVelocityThreshold === "object" && "id" in HoverVelocityThreshold ? HoverVelocityThreshold === null || HoverVelocityThreshold === void 0 ? void 0 : HoverVelocityThreshold.id : undefined, value: typeof HoverVelocityThreshold === "object" && "value" in HoverVelocityThreshold ? HoverVelocityThreshold === null || HoverVelocityThreshold === void 0 ? void 0 : HoverVelocityThreshold.value : HoverVelocityThreshold, isRaw: typeof HoverVelocityThreshold === "object" && "isRaw" in HoverVelocityThreshold && HoverVelocityThreshold.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "HorizontalBodyAngle", id: typeof HorizontalBodyAngle === "object" && "id" in HorizontalBodyAngle ? HorizontalBodyAngle === null || HorizontalBodyAngle === void 0 ? void 0 : HorizontalBodyAngle.id : undefined, value: typeof HorizontalBodyAngle === "object" && "value" in HorizontalBodyAngle ? HorizontalBodyAngle === null || HorizontalBodyAngle === void 0 ? void 0 : HorizontalBodyAngle.value : HorizontalBodyAngle, isRaw: typeof HorizontalBodyAngle === "object" && "isRaw" in HorizontalBodyAngle && HorizontalBodyAngle.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Boolean]", name: "SupressWalkAnimationWhenHorizontal", id: typeof SupressWalkAnimationWhenHorizontal === "object" && "id" in SupressWalkAnimationWhenHorizontal ? SupressWalkAnimationWhenHorizontal === null || SupressWalkAnimationWhenHorizontal === void 0 ? void 0 : SupressWalkAnimationWhenHorizontal.id : undefined, value: typeof SupressWalkAnimationWhenHorizontal === "object" && "value" in SupressWalkAnimationWhenHorizontal ? SupressWalkAnimationWhenHorizontal === null || SupressWalkAnimationWhenHorizontal === void 0 ? void 0 : SupressWalkAnimationWhenHorizontal.value : SupressWalkAnimationWhenHorizontal, isRaw: typeof SupressWalkAnimationWhenHorizontal === "object" && "isRaw" in SupressWalkAnimationWhenHorizontal && SupressWalkAnimationWhenHorizontal.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Boolean]", name: "AlwaysUseTrackersWhenHorizontal", id: typeof AlwaysUseTrackersWhenHorizontal === "object" && "id" in AlwaysUseTrackersWhenHorizontal ? AlwaysUseTrackersWhenHorizontal === null || AlwaysUseTrackersWhenHorizontal === void 0 ? void 0 : AlwaysUseTrackersWhenHorizontal.id : undefined, value: typeof AlwaysUseTrackersWhenHorizontal === "object" && "value" in AlwaysUseTrackersWhenHorizontal ? AlwaysUseTrackersWhenHorizontal === null || AlwaysUseTrackersWhenHorizontal === void 0 ? void 0 : AlwaysUseTrackersWhenHorizontal.value : AlwaysUseTrackersWhenHorizontal, isRaw: typeof AlwaysUseTrackersWhenHorizontal === "object" && "isRaw" in AlwaysUseTrackersWhenHorizontal && AlwaysUseTrackersWhenHorizontal.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncList`1[FrooxEngine.FinalIK.VRIKAvatar+Gait]", name: "Gaits", id: typeof Gaits === "object" && "id" in Gaits ? Gaits === null || Gaits === void 0 ? void 0 : Gaits.id : undefined, value: typeof Gaits === "object" && "value" in Gaits ? Gaits === null || Gaits === void 0 ? void 0 : Gaits.value : Gaits, isRaw: typeof Gaits === "object" && "isRaw" in Gaits && Gaits.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "GaitTransitionSpeed", id: typeof GaitTransitionSpeed === "object" && "id" in GaitTransitionSpeed ? GaitTransitionSpeed === null || GaitTransitionSpeed === void 0 ? void 0 : GaitTransitionSpeed.id : undefined, value: typeof GaitTransitionSpeed === "object" && "value" in GaitTransitionSpeed ? GaitTransitionSpeed === null || GaitTransitionSpeed === void 0 ? void 0 : GaitTransitionSpeed.value : GaitTransitionSpeed, isRaw: typeof GaitTransitionSpeed === "object" && "isRaw" in GaitTransitionSpeed && GaitTransitionSpeed.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "GaitMovementDirectionSmoothSpeed", id: typeof GaitMovementDirectionSmoothSpeed === "object" && "id" in GaitMovementDirectionSmoothSpeed ? GaitMovementDirectionSmoothSpeed === null || GaitMovementDirectionSmoothSpeed === void 0 ? void 0 : GaitMovementDirectionSmoothSpeed.id : undefined, value: typeof GaitMovementDirectionSmoothSpeed === "object" && "value" in GaitMovementDirectionSmoothSpeed ? GaitMovementDirectionSmoothSpeed === null || GaitMovementDirectionSmoothSpeed === void 0 ? void 0 : GaitMovementDirectionSmoothSpeed.value : GaitMovementDirectionSmoothSpeed, isRaw: typeof GaitMovementDirectionSmoothSpeed === "object" && "isRaw" in GaitMovementDirectionSmoothSpeed && GaitMovementDirectionSmoothSpeed.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[System.Single]", name: "RigCollidersRadiusRatio", id: typeof RigCollidersRadiusRatio === "object" && "id" in RigCollidersRadiusRatio ? RigCollidersRadiusRatio === null || RigCollidersRadiusRatio === void 0 ? void 0 : RigCollidersRadiusRatio.id : undefined, value: typeof RigCollidersRadiusRatio === "object" && "value" in RigCollidersRadiusRatio ? RigCollidersRadiusRatio === null || RigCollidersRadiusRatio === void 0 ? void 0 : RigCollidersRadiusRatio.value : RigCollidersRadiusRatio, isRaw: typeof RigCollidersRadiusRatio === "object" && "isRaw" in RigCollidersRadiusRatio && RigCollidersRadiusRatio.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[BaseX.floatQ]", name: "LeftHandRotationOffset", id: typeof LeftHandRotationOffset === "object" && "id" in LeftHandRotationOffset ? LeftHandRotationOffset === null || LeftHandRotationOffset === void 0 ? void 0 : LeftHandRotationOffset.id : undefined, value: typeof LeftHandRotationOffset === "object" && "value" in LeftHandRotationOffset ? LeftHandRotationOffset === null || LeftHandRotationOffset === void 0 ? void 0 : LeftHandRotationOffset.value : LeftHandRotationOffset, isRaw: typeof LeftHandRotationOffset === "object" && "isRaw" in LeftHandRotationOffset && LeftHandRotationOffset.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.Sync`1[BaseX.floatQ]", name: "RightHandRotationOffset", id: typeof RightHandRotationOffset === "object" && "id" in RightHandRotationOffset ? RightHandRotationOffset === null || RightHandRotationOffset === void 0 ? void 0 : RightHandRotationOffset.id : undefined, value: typeof RightHandRotationOffset === "object" && "value" in RightHandRotationOffset ? RightHandRotationOffset === null || RightHandRotationOffset === void 0 ? void 0 : RightHandRotationOffset.value : RightHandRotationOffset, isRaw: typeof RightHandRotationOffset === "object" && "isRaw" in RightHandRotationOffset && RightHandRotationOffset.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.RawOutput`1[System.Single]", name: "CurrentAverageVelocity", id: typeof CurrentAverageVelocity === "object" && "id" in CurrentAverageVelocity ? CurrentAverageVelocity === null || CurrentAverageVelocity === void 0 ? void 0 : CurrentAverageVelocity.id : undefined, value: typeof CurrentAverageVelocity === "object" && "value" in CurrentAverageVelocity ? CurrentAverageVelocity === null || CurrentAverageVelocity === void 0 ? void 0 : CurrentAverageVelocity.value : CurrentAverageVelocity, isRaw: typeof CurrentAverageVelocity === "object" && "isRaw" in CurrentAverageVelocity && CurrentAverageVelocity.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.RawOutput`1[System.Boolean]", name: "CurrentOnGround", id: typeof CurrentOnGround === "object" && "id" in CurrentOnGround ? CurrentOnGround === null || CurrentOnGround === void 0 ? void 0 : CurrentOnGround.id : undefined, value: typeof CurrentOnGround === "object" && "value" in CurrentOnGround ? CurrentOnGround === null || CurrentOnGround === void 0 ? void 0 : CurrentOnGround.value : CurrentOnGround, isRaw: typeof CurrentOnGround === "object" && "isRaw" in CurrentOnGround && CurrentOnGround.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.RawOutput`1[System.Int32]", name: "CurrentGaitIndex", id: typeof CurrentGaitIndex === "object" && "id" in CurrentGaitIndex ? CurrentGaitIndex === null || CurrentGaitIndex === void 0 ? void 0 : CurrentGaitIndex.id : undefined, value: typeof CurrentGaitIndex === "object" && "value" in CurrentGaitIndex ? CurrentGaitIndex === null || CurrentGaitIndex === void 0 ? void 0 : CurrentGaitIndex.value : CurrentGaitIndex, isRaw: typeof CurrentGaitIndex === "object" && "isRaw" in CurrentGaitIndex && CurrentGaitIndex.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.LocomotionController]", name: "_locomotionController", id: typeof _locomotionController === "object" && "id" in _locomotionController ? _locomotionController === null || _locomotionController === void 0 ? void 0 : _locomotionController.id : undefined, value: typeof _locomotionController === "object" && "value" in _locomotionController ? _locomotionController === null || _locomotionController === void 0 ? void 0 : _locomotionController.value : _locomotionController, isRaw: typeof _locomotionController === "object" && "isRaw" in _locomotionController && _locomotionController.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.CommonAvatar.AvatarPoseNode]", name: "_leftHandNode", id: typeof _leftHandNode === "object" && "id" in _leftHandNode ? _leftHandNode === null || _leftHandNode === void 0 ? void 0 : _leftHandNode.id : undefined, value: typeof _leftHandNode === "object" && "value" in _leftHandNode ? _leftHandNode === null || _leftHandNode === void 0 ? void 0 : _leftHandNode.value : _leftHandNode, isRaw: typeof _leftHandNode === "object" && "isRaw" in _leftHandNode && _leftHandNode.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.CommonAvatar.AvatarPoseNode]", name: "_rightHandNode", id: typeof _rightHandNode === "object" && "id" in _rightHandNode ? _rightHandNode === null || _rightHandNode === void 0 ? void 0 : _rightHandNode.id : undefined, value: typeof _rightHandNode === "object" && "value" in _rightHandNode ? _rightHandNode === null || _rightHandNode === void 0 ? void 0 : _rightHandNode.value : _rightHandNode, isRaw: typeof _rightHandNode === "object" && "isRaw" in _rightHandNode && _rightHandNode.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.CommonAvatar.AvatarPoseNode]", name: "_leftElbowNode", id: typeof _leftElbowNode === "object" && "id" in _leftElbowNode ? _leftElbowNode === null || _leftElbowNode === void 0 ? void 0 : _leftElbowNode.id : undefined, value: typeof _leftElbowNode === "object" && "value" in _leftElbowNode ? _leftElbowNode === null || _leftElbowNode === void 0 ? void 0 : _leftElbowNode.value : _leftElbowNode, isRaw: typeof _leftElbowNode === "object" && "isRaw" in _leftElbowNode && _leftElbowNode.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.CommonAvatar.AvatarPoseNode]", name: "_rightElbowNode", id: typeof _rightElbowNode === "object" && "id" in _rightElbowNode ? _rightElbowNode === null || _rightElbowNode === void 0 ? void 0 : _rightElbowNode.id : undefined, value: typeof _rightElbowNode === "object" && "value" in _rightElbowNode ? _rightElbowNode === null || _rightElbowNode === void 0 ? void 0 : _rightElbowNode.value : _rightElbowNode, isRaw: typeof _rightElbowNode === "object" && "isRaw" in _rightElbowNode && _rightElbowNode.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.CommonAvatar.AvatarPoseNode]", name: "_leftFootNode", id: typeof _leftFootNode === "object" && "id" in _leftFootNode ? _leftFootNode === null || _leftFootNode === void 0 ? void 0 : _leftFootNode.id : undefined, value: typeof _leftFootNode === "object" && "value" in _leftFootNode ? _leftFootNode === null || _leftFootNode === void 0 ? void 0 : _leftFootNode.value : _leftFootNode, isRaw: typeof _leftFootNode === "object" && "isRaw" in _leftFootNode && _leftFootNode.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.CommonAvatar.AvatarPoseNode]", name: "_rightFootNode", id: typeof _rightFootNode === "object" && "id" in _rightFootNode ? _rightFootNode === null || _rightFootNode === void 0 ? void 0 : _rightFootNode.id : undefined, value: typeof _rightFootNode === "object" && "value" in _rightFootNode ? _rightFootNode === null || _rightFootNode === void 0 ? void 0 : _rightFootNode.value : _rightFootNode, isRaw: typeof _rightFootNode === "object" && "isRaw" in _rightFootNode && _rightFootNode.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.CommonAvatar.AvatarPoseNode]", name: "_leftKneeNode", id: typeof _leftKneeNode === "object" && "id" in _leftKneeNode ? _leftKneeNode === null || _leftKneeNode === void 0 ? void 0 : _leftKneeNode.id : undefined, value: typeof _leftKneeNode === "object" && "value" in _leftKneeNode ? _leftKneeNode === null || _leftKneeNode === void 0 ? void 0 : _leftKneeNode.value : _leftKneeNode, isRaw: typeof _leftKneeNode === "object" && "isRaw" in _leftKneeNode && _leftKneeNode.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.CommonAvatar.AvatarPoseNode]", name: "_rightKneeNode", id: typeof _rightKneeNode === "object" && "id" in _rightKneeNode ? _rightKneeNode === null || _rightKneeNode === void 0 ? void 0 : _rightKneeNode.id : undefined, value: typeof _rightKneeNode === "object" && "value" in _rightKneeNode ? _rightKneeNode === null || _rightKneeNode === void 0 ? void 0 : _rightKneeNode.value : _rightKneeNode, isRaw: typeof _rightKneeNode === "object" && "isRaw" in _rightKneeNode && _rightKneeNode.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.CommonAvatar.AvatarPoseNode]", name: "_headNode", id: typeof _headNode === "object" && "id" in _headNode ? _headNode === null || _headNode === void 0 ? void 0 : _headNode.id : undefined, value: typeof _headNode === "object" && "value" in _headNode ? _headNode === null || _headNode === void 0 ? void 0 : _headNode.value : _headNode, isRaw: typeof _headNode === "object" && "isRaw" in _headNode && _headNode.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.CommonAvatar.AvatarPoseNode]", name: "_pelvisNode", id: typeof _pelvisNode === "object" && "id" in _pelvisNode ? _pelvisNode === null || _pelvisNode === void 0 ? void 0 : _pelvisNode.id : undefined, value: typeof _pelvisNode === "object" && "value" in _pelvisNode ? _pelvisNode === null || _pelvisNode === void 0 ? void 0 : _pelvisNode.value : _pelvisNode, isRaw: typeof _pelvisNode === "object" && "isRaw" in _pelvisNode && _pelvisNode.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.CommonAvatar.AvatarPoseNode]", name: "_chestNode", id: typeof _chestNode === "object" && "id" in _chestNode ? _chestNode === null || _chestNode === void 0 ? void 0 : _chestNode.id : undefined, value: typeof _chestNode === "object" && "value" in _chestNode ? _chestNode === null || _chestNode === void 0 ? void 0 : _chestNode.value : _chestNode, isRaw: typeof _chestNode === "object" && "isRaw" in _chestNode && _chestNode.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.Slot]", name: "_headProxy", id: typeof _headProxy === "object" && "id" in _headProxy ? _headProxy === null || _headProxy === void 0 ? void 0 : _headProxy.id : undefined, value: typeof _headProxy === "object" && "value" in _headProxy ? _headProxy === null || _headProxy === void 0 ? void 0 : _headProxy.value : _headProxy, isRaw: typeof _headProxy === "object" && "isRaw" in _headProxy && _headProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.Slot]", name: "_pelvisProxy", id: typeof _pelvisProxy === "object" && "id" in _pelvisProxy ? _pelvisProxy === null || _pelvisProxy === void 0 ? void 0 : _pelvisProxy.id : undefined, value: typeof _pelvisProxy === "object" && "value" in _pelvisProxy ? _pelvisProxy === null || _pelvisProxy === void 0 ? void 0 : _pelvisProxy.value : _pelvisProxy, isRaw: typeof _pelvisProxy === "object" && "isRaw" in _pelvisProxy && _pelvisProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.Slot]", name: "_chestProxy", id: typeof _chestProxy === "object" && "id" in _chestProxy ? _chestProxy === null || _chestProxy === void 0 ? void 0 : _chestProxy.id : undefined, value: typeof _chestProxy === "object" && "value" in _chestProxy ? _chestProxy === null || _chestProxy === void 0 ? void 0 : _chestProxy.value : _chestProxy, isRaw: typeof _chestProxy === "object" && "isRaw" in _chestProxy && _chestProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.Slot]", name: "_leftHandProxy", id: typeof _leftHandProxy === "object" && "id" in _leftHandProxy ? _leftHandProxy === null || _leftHandProxy === void 0 ? void 0 : _leftHandProxy.id : undefined, value: typeof _leftHandProxy === "object" && "value" in _leftHandProxy ? _leftHandProxy === null || _leftHandProxy === void 0 ? void 0 : _leftHandProxy.value : _leftHandProxy, isRaw: typeof _leftHandProxy === "object" && "isRaw" in _leftHandProxy && _leftHandProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.Slot]", name: "_rightHandProxy", id: typeof _rightHandProxy === "object" && "id" in _rightHandProxy ? _rightHandProxy === null || _rightHandProxy === void 0 ? void 0 : _rightHandProxy.id : undefined, value: typeof _rightHandProxy === "object" && "value" in _rightHandProxy ? _rightHandProxy === null || _rightHandProxy === void 0 ? void 0 : _rightHandProxy.value : _rightHandProxy, isRaw: typeof _rightHandProxy === "object" && "isRaw" in _rightHandProxy && _rightHandProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.Slot]", name: "_leftElbowProxy", id: typeof _leftElbowProxy === "object" && "id" in _leftElbowProxy ? _leftElbowProxy === null || _leftElbowProxy === void 0 ? void 0 : _leftElbowProxy.id : undefined, value: typeof _leftElbowProxy === "object" && "value" in _leftElbowProxy ? _leftElbowProxy === null || _leftElbowProxy === void 0 ? void 0 : _leftElbowProxy.value : _leftElbowProxy, isRaw: typeof _leftElbowProxy === "object" && "isRaw" in _leftElbowProxy && _leftElbowProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.Slot]", name: "_rightElbowProxy", id: typeof _rightElbowProxy === "object" && "id" in _rightElbowProxy ? _rightElbowProxy === null || _rightElbowProxy === void 0 ? void 0 : _rightElbowProxy.id : undefined, value: typeof _rightElbowProxy === "object" && "value" in _rightElbowProxy ? _rightElbowProxy === null || _rightElbowProxy === void 0 ? void 0 : _rightElbowProxy.value : _rightElbowProxy, isRaw: typeof _rightElbowProxy === "object" && "isRaw" in _rightElbowProxy && _rightElbowProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.Slot]", name: "_leftFootProxy", id: typeof _leftFootProxy === "object" && "id" in _leftFootProxy ? _leftFootProxy === null || _leftFootProxy === void 0 ? void 0 : _leftFootProxy.id : undefined, value: typeof _leftFootProxy === "object" && "value" in _leftFootProxy ? _leftFootProxy === null || _leftFootProxy === void 0 ? void 0 : _leftFootProxy.value : _leftFootProxy, isRaw: typeof _leftFootProxy === "object" && "isRaw" in _leftFootProxy && _leftFootProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.Slot]", name: "_rightFootProxy", id: typeof _rightFootProxy === "object" && "id" in _rightFootProxy ? _rightFootProxy === null || _rightFootProxy === void 0 ? void 0 : _rightFootProxy.id : undefined, value: typeof _rightFootProxy === "object" && "value" in _rightFootProxy ? _rightFootProxy === null || _rightFootProxy === void 0 ? void 0 : _rightFootProxy.value : _rightFootProxy, isRaw: typeof _rightFootProxy === "object" && "isRaw" in _rightFootProxy && _rightFootProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.Slot]", name: "_leftKneeProxy", id: typeof _leftKneeProxy === "object" && "id" in _leftKneeProxy ? _leftKneeProxy === null || _leftKneeProxy === void 0 ? void 0 : _leftKneeProxy.id : undefined, value: typeof _leftKneeProxy === "object" && "value" in _leftKneeProxy ? _leftKneeProxy === null || _leftKneeProxy === void 0 ? void 0 : _leftKneeProxy.value : _leftKneeProxy, isRaw: typeof _leftKneeProxy === "object" && "isRaw" in _leftKneeProxy && _leftKneeProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.Slot]", name: "_rightKneeProxy", id: typeof _rightKneeProxy === "object" && "id" in _rightKneeProxy ? _rightKneeProxy === null || _rightKneeProxy === void 0 ? void 0 : _rightKneeProxy.id : undefined, value: typeof _rightKneeProxy === "object" && "value" in _rightKneeProxy ? _rightKneeProxy === null || _rightKneeProxy === void 0 ? void 0 : _rightKneeProxy.value : _rightKneeProxy, isRaw: typeof _rightKneeProxy === "object" && "isRaw" in _rightKneeProxy && _rightKneeProxy.isRaw ? true : undefined }), (0, jsx_runtime_1.jsx)(core_1.Member, { type: "FrooxEngine.SyncRef`1[FrooxEngine.Slot]", name: "_leftKneeDefaultProxy", id: typeof _leftKneeDefaultProxy === "object"