コード例 #1
0
ファイル: Attachable.cs プロジェクト: atur94/Brick-s-racing
    protected override void OnBlockPlaced(GameObject parent)
    {
        BlockBase parentComponent = parent.GetComponent <BlockBase>();

        if (parentComponent != null)
        {
            parentComponent.AddAttached(this);
            AttachedTo = parent;
        }
    }