Esempio n. 1
0
    // Update is called once per frame
    void Update()
    {
        if (!isBuilderMode && objectPreview != null)
        {
            Destroy(objectPreview);
        }

        if (buildObjectToggled)
        {
            Destroy(objectPreview);
            buildObjectToggled = false;
        }

        if (isBuilderMode && !EventSystem.current.IsPointerOverGameObject())
        {
            if (objectPreview == null)
            {
                Vector3 curPosition = GetCurrentMousePosition();

                objectPreview = Instantiate(curPrefab, curPosition, Quaternion.identity) as GameObject;

                // need to make the preview object non-kinematic in order for collision to work
                Rigidbody2D rb = objectPreview.GetComponent <Rigidbody2D>();
                rb.isKinematic = false;
            }
        }

        if (objectPreview != null)
        {
            objectPreview.transform.position = GetCurrentMousePosition();
        }

        if (Input.GetMouseButtonDown(0) &&
            isBuilderMode &&
            !EventSystem.current.IsPointerOverGameObject())
        {
            if (objectPreview == null)
            {
                throw new System.NullReferenceException("Object preview was empty");
            }

            Placement placement = objectPreview.GetComponent <Placement>();

            Debug.Log(placement.GetCanPlaceHere());

            if (placement.GetCanPlaceHere())
            {
                Instantiate(curPrefab, GetCurrentMousePosition(), Quaternion.identity);

                Destroy(objectPreview);
            }
        }
    }