mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 07:18:00 +01:00
33 lines
743 B
C#
33 lines
743 B
C#
using UnityEngine;
|
|
|
|
namespace Fie.LevelObject
|
|
{
|
|
public class FieLevelObjectGrass : MonoBehaviour
|
|
{
|
|
public const string GRASS_DENSITY_NAME = "_MaxTessellation";
|
|
|
|
private void Awake()
|
|
{
|
|
switch (QualitySettings.GetQualityLevel())
|
|
{
|
|
case 3:
|
|
break;
|
|
default:
|
|
UnityEngine.Object.Destroy(base.gameObject);
|
|
break;
|
|
case 2:
|
|
{
|
|
float float2 = GetComponent<Renderer>().material.GetFloat("_MaxTessellation");
|
|
GetComponent<Renderer>().material.SetFloat("_MaxTessellation", float2 - 1f);
|
|
break;
|
|
}
|
|
case 4:
|
|
{
|
|
float @float = GetComponent<Renderer>().material.GetFloat("_MaxTessellation");
|
|
GetComponent<Renderer>().material.SetFloat("_MaxTessellation", @float + 1f);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|