Zeplin.HeadsUpDisplay.this C# (CSharp) Method

this() public method

public this ( string widgetName ) : Zeplin.GameObject
widgetName string
return Zeplin.GameObject
        public GameObject this[string widgetName]
        {
            get
            {
                return widgets[widgetName];
            }
            set
            {
                widgets.Add(widgetName, value);
            }
        }