Better navmesh, Added icons, Added PSXPlayer component

This commit is contained in:
2025-04-07 17:47:48 +02:00
parent 9037937d3c
commit 93c50866f8
12 changed files with 434 additions and 24 deletions

View File

@@ -1,6 +1,7 @@
using UnityEditor;
using System.Collections.Generic;
using UnityEngine;
using System.Linq;
namespace SplashEdit.RuntimeCode
{
@@ -330,7 +331,8 @@ namespace SplashEdit.RuntimeCode
}
public static byte ColorUnityToPSX(float v) => (byte)(Mathf.Clamp(v*255, 0, 255));
public static byte ColorUnityToPSX(float v) => (byte)(Mathf.Clamp(v * 255, 0, 255));
}
}