Zeplin.HeadsUpDisplay.this C# (CSharp) Méthode

this() public méthode

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