Zeplin.HeadsUpDisplay.this C# (CSharp) 메소드

this() 공개 메소드

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