HideBehaviour

Attribute to hide in add behaviour menu.

Example

Script

Create a script named TestHideBehaviour and write the following code.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using Arbor;

[HideBehaviour]
[AddComponentMenu("")]
public class TestHideBehaviour : StateBehaviour
{
}

Operation check

Click “Add Behaviour” in the state and check that it is hidden in the behavior added menu window.

If not specified, there should be only one TestHideBehaviour in the Scripts group, but since the TestHideBehaviour is hidden, the Scripts group is no longer displayed.