2026-04-22 모듈러 에셋 포함
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
// Magica Cloth 2.
|
||||
// Copyright (c) 2023 MagicaSoft.
|
||||
// https://magicasoft.jp
|
||||
using UnityEngine;
|
||||
|
||||
namespace MagicaCloth2
|
||||
{
|
||||
public class TargetFPS : MonoBehaviour
|
||||
{
|
||||
public int frameRate = 60;
|
||||
|
||||
#if !UNITY_EDITOR
|
||||
protected void Start()
|
||||
{
|
||||
Application.targetFrameRate = frameRate;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user