Files
Scove 3e39117acc Consolidate third-party plugins into Assets/Plugins
Move and consolidate many third-party plugin files and metadata from various locations (notably Assets/Third Parties/Plugins 1 and scattered Opsive/Photon folders) into a unified Assets/Plugins directory. Includes DOTween, PrimeTween, Native/BackroomsNoise, Sirenix/Odin Inspector, and Opsive UltimateCharacterController/shared libs, plus updates to several .meta files and removal of obsolete installer/legacy files. This standardizes plugin layout and cleans up duplicate/obsolete assets.
2026-06-16 18:41:44 +07:00

32 lines
1.5 KiB
C#

/// ---------------------------------------------
/// Ultimate Character Controller
/// Copyright (c) Opsive. All Rights Reserved.
/// https://www.opsive.com
/// ---------------------------------------------
#if NET_4_6 || UNITY_2018_3_OR_NEWER || UNITY_WEBGL || UNITY_IOS || UNITY_ANDROID || UNITY_WII || UNITY_WIIU || UNITY_SWITCH || UNITY_PS3 || UNITY_PS4 || UNITY_XBOXONE || UNITY_WSA
using UnityEngine;
#if ULTIMATE_CHARACTER_CONTROLLER_LWRP || ULTIMATE_CHARACTER_CONTROLLER_UNIVERSALRP
using Opsive.UltimateCharacterController.FirstPersonController.Camera.ViewTypes;
#endif
using Opsive.UltimateCharacterController.StateSystem;
using System;
namespace Opsive.UltimateCharacterController.FirstPersonController.StateSystem
{
// See Opsive.UltimateCharacterController.StateSystem.AOTLinker for an explanation of this class.
public class AOTLinker : MonoBehaviour
{
public void Linker()
{
#pragma warning disable 0219
#if ULTIMATE_CHARACTER_CONTROLLER_LWRP || ULTIMATE_CHARACTER_CONTROLLER_UNIVERSALRP
var objectOverlayRenderTypeFirstPersonCameraViewType = new Preset.GenericDelegate<FirstPerson.ObjectOverlayRenderType>();
var objectOverlayRenderTypeFirstPersonCameraFuncDelegate = new Func<FirstPerson.ObjectOverlayRenderType>(() => { return 0; });
var objectOverlayRenderTypeFirstPersonCameraActionDelegate = new Action<FirstPerson.ObjectOverlayRenderType>((FirstPerson.ObjectOverlayRenderType value) => { });
#endif
#pragma warning restore 0219
}
}
}
#endif