경고제거

This commit is contained in:
2026-07-06 10:31:10 +09:00
parent 46c712d2f1
commit 65242dbd6d
3 changed files with 5 additions and 3 deletions

View File

@@ -33,6 +33,7 @@ public class PermissionsManager : MonoBehaviour
/// <summary>
/// A group of permissions to request based on a specific platform.
/// </summary>
#pragma warning disable 649 // Fields are assigned by Unity serialization
[Serializable]
class PermissionRequestGroup
{
@@ -66,6 +67,7 @@ class PermissionRequest
public UnityEvent<string> onPermissionDenied;
}
#pragma warning restore 649
void Awake()
{

View File

@@ -71,7 +71,7 @@ public enum UpdateType
Vector3[] m_ControlPoints = new Vector3[4];
float m_Time;
float m_LineWidth;
float m_LastViewerScale;
float m_LastViewerScale = 1f;
Vector3 m_LastStartPosition;
Vector3 m_LastEndPosition;