Legacy Documentation: Version 4.6
Language: English
Namespaces
Execution Order of Event Functions

Attributes

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Attributes are markers that can be placed above a class, property or function in a script to indicate special behaviour. For example, the HideInInspector attribute can be added above a property declaration to prevent the property being shown in the inspector, even if it is public. In JavaScript, an attribute name begins with an “@” sign, whilst in C# and Boo, it is contained within square brackets:-

// JS

@HideInInspector
var strength: float;


// C#

[HideInInspector]
public float strength;

Unity provides a number of attributes which are listed in the script reference (select the Editor or Runtime Attributes section from popup menu in the sidebar). There are also attributes defined in the .NET libraries which may sometimes be useful in Unity code.

Note: the ThreadStatic attribute defined in the .NET library should not be used as it will cause a crash if added to a Unity script.

Namespaces
Execution Order of Event Functions