コード例 #1
0
ファイル: ShelfItem.cs プロジェクト: GreenTea-M/ProjectPengi
        public void OnClick()
        {
            if (_isDone)
            {
                return;
            }

            _isDone = true; // for the sake of inform shelf knowing this is done

            _customCommands.memoryStorage.SetValue("$" + _shelfItemData.variableName, 1f);
            _customCommands.InformShelfItemTouched(this);
        }