FairyGUI.GearSize.UpdateFromRelations C# (CSharp) 메소드

UpdateFromRelations() 공개 메소드

public UpdateFromRelations ( float dx, float dy ) : void
dx float
dy float
리턴 void
        public override void UpdateFromRelations(float dx, float dy)
        {
            if (_controller != null && _storage != null)
            {
                foreach (GearSizeValue gv in _storage.Values)
                {
                    gv.width += dx;
                    gv.height += dy;
                }
                _default.width += dx;
                _default.height += dy;

                UpdateState();
            }
        }