unityzgy/.svn/pristine/03/03b40f524cc45772534af2b2b763b7049f091831.svn-base
ayuan9957 bf12e02276 feat: 多语言本地化系统 - 支持中/英/法/俄实时切换
- LocalizationManager: 新增翻译表(SetFormatted/SetDuration/LocalizeOperateMsg)
- LoginPanel: InputField placeholder本地化、字体颜色保持
- HistoryPanel: 用时数据本地化、placeholder本地化
- RecordDetailPanel: 操作详情消息本地化(LanguageChanged重建)
- AppraiseWindowBase: 评价等级本地化、操作消息重建
- EditorAppraiser: 所有评估消息改用InjectOperateMsgLocalized
- StudentOperateRecorder: 新增InjectOperateMsgLocalized方法
- LocalizationLanguageTestBar: 单例模式、ScreenSpaceOverlay筛选
- 字体切换时保留颜色和verticalOverflow
2026-07-16 10:05:59 +08:00

179 lines
8.5 KiB
Plaintext

// Destination Marker|Pointers|10010
namespace VRTK
{
using UnityEngine;
using System;
/// <summary>
/// Event Payload
/// </summary>
/// <param name="distance">The distance between the origin and the collided destination.</param>
/// <param name="target">The Transform of the collided destination object.</param>
/// <param name="raycastHit">The optional RaycastHit generated from when the ray collided.</param>
/// <param name="destinationPosition">The world position of the destination marker.</param>
/// <param name="destinationRotation">The world rotation of the destination marker.</param>
/// <param name="forceDestinationPosition">If true then the given destination position should not be altered by anything consuming the payload.</param>
/// <param name="enableTeleport">Whether the destination set event should trigger teleport.</param>
/// <param name="controllerIndex">**OBSOLETE** The optional index of the controller controlling the destination marker.</param>
/// <param name="controllerReference">The optional reference to the controller controlling the destination marker.</param>
public struct DestinationMarkerEventArgs
{
public float distance;
public Transform target;
public RaycastHit raycastHit;
public Vector3 destinationPosition;
public Quaternion? destinationRotation;
public bool forceDestinationPosition;
public bool enableTeleport;
[Obsolete("`DestinationMarkerEventArgs.controllerIndex` has been replaced with `DestinationMarkerEventArgs.controllerReference`. This parameter will be removed in a future version of VRTK.")]
public uint controllerIndex;
public VRTK_ControllerReference controllerReference;
}
/// <summary>
/// Event Payload
/// </summary>
/// <param name="sender">this object</param>
/// <param name="e"><see cref="DestinationMarkerEventArgs"/></param>
public delegate void DestinationMarkerEventHandler(object sender, DestinationMarkerEventArgs e);
/// <summary>
/// This abstract class provides the ability to emit events of destination markers within the game world. It can be useful for tagging locations for specific purposes such as teleporting.
/// </summary>
/// <remarks>
/// It is utilised by the `VRTK_BasePointer` for dealing with pointer events when the pointer cursor touches areas within the game world.
/// </remarks>
public abstract class VRTK_DestinationMarker : MonoBehaviour
{
[Header("Destination Marker Settings", order = 1)]
[Tooltip("If this is checked then the teleport flag is set to true in the Destination Set event so teleport scripts will know whether to action the new destination.")]
public bool enableTeleport = true;
[Tooltip("A specified VRTK_PolicyList to use to determine whether destination targets will be considered valid or invalid.")]
public VRTK_PolicyList targetListPolicy;
/// <summary>
/// Emitted when a collision with another collider has first occurred.
/// </summary>
public event DestinationMarkerEventHandler DestinationMarkerEnter;
/// <summary>
/// Emitted when the collision with the other collider ends.
/// </summary>
public event DestinationMarkerEventHandler DestinationMarkerExit;
/// Emitted when a collision the existing collider is continuing.
/// </summary>
public event DestinationMarkerEventHandler DestinationMarkerHover;
/// <summary>
/// Emitted when the destination marker is active in the scene to determine the last destination position (useful for selecting and teleporting).
/// </summary>
public event DestinationMarkerEventHandler DestinationMarkerSet;
protected float navMeshCheckDistance;
protected bool headsetPositionCompensation;
protected bool forceHoverOnRepeatedEnter = true;
protected Collider existingCollider;
public virtual void OnDestinationMarkerEnter(DestinationMarkerEventArgs e)
{
if (DestinationMarkerEnter != null && (!forceHoverOnRepeatedEnter || (e.raycastHit.collider != existingCollider)))
{
existingCollider = e.raycastHit.collider;
DestinationMarkerEnter(this, e);
}
if (forceHoverOnRepeatedEnter && e.raycastHit.collider == existingCollider)
{
OnDestinationMarkerHover(e);
}
}
public virtual void OnDestinationMarkerExit(DestinationMarkerEventArgs e)
{
if (DestinationMarkerExit != null)
{
DestinationMarkerExit(this, e);
existingCollider = null;
}
}
public virtual void OnDestinationMarkerHover(DestinationMarkerEventArgs e)
{
if (DestinationMarkerHover != null)
{
DestinationMarkerHover(this, e);
}
}
public virtual void OnDestinationMarkerSet(DestinationMarkerEventArgs e)
{
if (DestinationMarkerSet != null)
{
DestinationMarkerSet(this, e);
}
}
/// <summary>
/// The SetInvalidTarget method is used to set objects that contain the given tag or class matching the name as invalid destination targets. It accepts a VRTK_PolicyList for a custom level of policy management.
/// </summary>
/// <param name="list">The Tag Or Script list policy to check the set operation on.</param>
[Obsolete("`DestinationMarkerEventArgs.SetInvalidTarget(list)` has been replaced with the public variable `DestinationMarkerEventArgs.targetListPolicy`. This method will be removed in a future version of VRTK.")]
public virtual void SetInvalidTarget(VRTK_PolicyList list = null)
{
targetListPolicy = list;
}
/// <summary>
/// The SetNavMeshCheckDistance method sets the max distance the destination marker position can be from the edge of a nav mesh to be considered a valid destination.
/// </summary>
/// <param name="distance">The max distance the nav mesh can be from the sample point to be valid.</param>
public virtual void SetNavMeshCheckDistance(float distance)
{
navMeshCheckDistance = distance;
}
/// <summary>
/// The SetHeadsetPositionCompensation method determines whether the offset position of the headset from the centre of the play area should be taken into consideration when setting the destination marker. If `true` then it will take the offset position into consideration.
/// </summary>
/// <param name="state">The state of whether to take the position of the headset within the play area into account when setting the destination marker.</param>
public virtual void SetHeadsetPositionCompensation(bool state)
{
headsetPositionCompensation = state;
}
/// <summary>
/// The SetForceHoverOnRepeatedEnter method is used to set whether the Enter event will forciably call the Hover event if the existing colliding object is the same as it was the previous enter call.
/// </summary>
/// <param name="state">The state of whether to force the hover on or off.</param>
public virtual void SetForceHoverOnRepeatedEnter(bool state)
{
forceHoverOnRepeatedEnter = state;
}
protected virtual void OnEnable()
{
VRTK_ObjectCache.registeredDestinationMarkers.Add(this);
}
protected virtual void OnDisable()
{
VRTK_ObjectCache.registeredDestinationMarkers.Remove(this);
}
protected virtual DestinationMarkerEventArgs SetDestinationMarkerEvent(float distance, Transform target, RaycastHit raycastHit, Vector3 position, VRTK_ControllerReference controllerReference, bool forceDestinationPosition = false, Quaternion? rotation = null)
{
DestinationMarkerEventArgs e;
#pragma warning disable 0618
e.controllerIndex = VRTK_ControllerReference.GetRealIndex(controllerReference);
#pragma warning restore 0618
e.controllerReference = controllerReference;
e.distance = distance;
e.target = target;
e.raycastHit = raycastHit;
e.destinationPosition = position;
e.destinationRotation = rotation;
e.enableTeleport = enableTeleport;
e.forceDestinationPosition = forceDestinationPosition;
return e;
}
}
}