9 lines
295 B
C#
Executable file
9 lines
295 B
C#
Executable file
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
namespace XSToonDynamicPenetration {
|
|
public class XSMultiGradient : ScriptableObject {
|
|
public string uniqueName = "New Gradient";
|
|
public List<Gradient> gradients = new List<Gradient>();
|
|
public List<int> order = new List<int>();
|
|
}
|
|
} |