Multi Tags reimplementation of the Unity tag system to allow for multiple tags on the same GameObject.
FEATURES:Multiple tags on GameObjects!
:Case insensitive tag checking!
:Extends unity tags!
:Fast!
:Add tags at runtime!
:Remove tags at runtime!
:FindWithMultiTag NEW!
:FindGameObjectsWithMultiTag NEW!
:FindGameObjectsWithMultiTagCount NEW!
:Playmaker support with 5 custom actions NEW!
:Easy to use in-editor inspector!
:Open Source!
API Examples: gameObject.AddTag("Hero");
gameObject.RemoveTag("Hero");
if (col.gameObject.HasTag ("Hero")) {
//Magic here
}
Forum Support