Attachment.OnTriggerEnter C# (CSharp) Method

OnTriggerEnter() private method

private OnTriggerEnter ( Collider, other ) : void
other Collider,
return void
    void OnTriggerEnter(Collider other)
    {
        if (other.gameObject.name == "AttachDetector")
            AttachPossibilities.Add(other.transform.parent);
    }