C# Class Google.XR.ARCoreExtensions.Internal.DynamicHelpAttribute

This attribute is used to generate a HelpBox based on the HelpAttribute return by the given reflection function. If both DynamicHelpAttribute and HelpAttribute are in use, only HelpAttribute will take effect. Note: the function must return the type HelpAttribute, take no parameters, and be a public member of the target object.
Inheritance: PropertyAttribute
Show file Open project: Jam3/arlabs-doodads

Public Properties

Property Type Description
CheckingFunction string

Public Methods

Method Description
DynamicHelpAttribute ( string checkingFunction ) : UnityEngine

Initializes a new instance of the DynamicHelpAttribute class.

Method Details

DynamicHelpAttribute() public method

Initializes a new instance of the DynamicHelpAttribute class.
public DynamicHelpAttribute ( string checkingFunction ) : UnityEngine
checkingFunction string A reflection function.
return UnityEngine

Property Details

CheckingFunction public property

Reflection function that return the type HelpAttribute, take no parameters, and must be a public member of the target object.
public string CheckingFunction
return string