コード例 #1
0
ファイル: Block.cs プロジェクト: ImRedBelly/CloneSnakeVSBlock
    private void Start()
    {
        destroyPrice = Random.Range(destroyPriceRange.x, destroyPriceRange.y);
        FillingUpdated?.Invoke(LeftToFill);

        SetColor(colors[Random.Range(0, colors.Length)]);
    }
コード例 #2
0
    public void Fill()
    {
        _filling++;
        FillingUpdated?.Invoke(LeftToFill);

        if (_filling == _destroyPrice)
        {
            Destroy(gameObject);
        }
    }
コード例 #3
0
 private void Start()
 {
     _destroyPrice = Random.Range(_destroyPriceRange.x, _destroyPriceRange.y);
     FillingUpdated?.Invoke(LeftToFill);
 }