You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
HighGroundRoyaleNetcode/Assets/JMO Assets/Cartoon FX/Scripts/CFX_InspectorHelp.cs

23 lines
460 B
C#

// Cartoon FX - (c) 2015, Jean Moreno
// Help Component that can be added to any GameObject or Prefab
// Can be useful if you want to add comments to a particular prefab about
// its usage
using UnityEngine;
using System.Collections;
public class CFX_InspectorHelp : MonoBehaviour
{
public bool Locked;
public string Title;
public string HelpText;
public int MsgType;
[ContextMenu("Unlock editing")]
void Unlock()
{
this.Locked = false;
}
}