Ejemplo n.º 1
0
    private void OnTriggerEnter2D(Collider2D collision)
    {
        var portal = collision.GetComponent <Portal>();

        if (portal != null)
        {
            VerbUI.Show(VerbType.OPEN);
            collidingPortal.Add(portal);
        }
    }
Ejemplo n.º 2
0
    private void OnTriggerEnter2D(Collider2D collision)
    {
        var spot = collision.GetComponent <InvestigationSpot>();

        if (spot != null)
        {
            VerbUI.Show(VerbType.LOOK);
            collidingSpots.Add(spot);
        }
    }
Ejemplo n.º 3
0
    private void OnTriggerEnter2D(Collider2D collision)
    {
        var witness = collision.GetComponent <Witness>();

        if (witness != null && InvestigationManager.me.currentCase == witness.GetCase())
        {
            VerbUI.Show(VerbType.ASK);
            collidingWitness.Add(witness);
        }
    }
Ejemplo n.º 4
0
    private void OnTriggerEnter2D(Collider2D collision)
    {
        Clue clue = collision.gameObject.GetComponent <Clue>();

        if (clue != null)
        {
            if (clue.GetCase() == InvestigationManager.me.currentCase)
            {
                VerbUI.Show(VerbType.INVESTIGATE);
                collidingClues.Add(collision.gameObject.GetComponent <Clue>());
            }
        }
    }
Ejemplo n.º 5
0
    private void OnTriggerEnter2D(Collider2D collision)
    {
        var dialogSpot = collision.gameObject.GetComponent <DialogSpot>();

        if (dialogSpot != null)
        {
            bool available = (dialogSpot.oneTimeOnly && !dialogSpot.played) || !dialogSpot.oneTimeOnly;
            if (dialogSpot.autoStart && available)
            {
                DialogUI.StartDialog(dialogSpot.data, false);
                dialogSpot.Play();
            }
            else if (!dialogSpot.autoStart)
            {
                VerbUI.Show(VerbType.ASK);
            }
        }
    }