using System.Collections; using System.Collections.Generic; using UnityEngine; [CreateAssetMenu(fileName = "Combat Action", menuName = "New Combat Action")] public class CombatAction : ScriptableObject { public enum Type { Attack, Heal } public string DisplayName; public Type ActionType; [Header("Damage")] public int Damage; public GameObject ProjectilePrefab; [Header("Heal")] public int HealAmount; }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter