コード例 #1
0
ファイル: RadiationZone.cs プロジェクト: salvadj1/RustSource
    private void OnTriggerExit(Collider other)
    {
        Character fromCollider = this.GetFromCollider(other);

        if (fromCollider != null)
        {
            Radiation local = fromCollider.GetLocal <Radiation>();
            if (local != null)
            {
                local.RemoveRadiationZone(this);
            }
        }
    }
コード例 #2
0
ファイル: RadiationZone.cs プロジェクト: sknchan/LegacyRust
    private void OnTriggerExit(Collider other)
    {
        Character fromCollider = this.GetFromCollider(other);

        if (!fromCollider)
        {
            return;
        }
        Radiation local = fromCollider.GetLocal <Radiation>();

        if (!local)
        {
            return;
        }
        local.RemoveRadiationZone(this);
    }