Remake prefabs

This commit is contained in:
haitem
2022-01-29 15:08:02 +01:00
parent d25e7cd1e8
commit 04ed79438f
9 changed files with 106 additions and 128 deletions

View File

@@ -111,7 +111,13 @@ public class PlayerController : MonoBehaviour
return;
}
if (other.GetContact(0).normal == other.transform.forward || other.GetContact(0).normal == -other.transform.forward)
if (other.GetContact(0).normal == other.transform.forward
|| other.GetContact(0).normal == -other.transform.forward
|| (other.GetContact(0).normal != -other.transform.up
&& other.GetContact(0).normal != other.transform.up
&& other.GetContact(0).normal != other.transform.right
&& other.GetContact(0).normal != -other.transform.right)
)
{
return;
}
@@ -127,7 +133,13 @@ public class PlayerController : MonoBehaviour
if (other.gameObject.tag == "platform")
{
if (other.GetContact(0).normal == other.transform.forward || other.GetContact(0).normal == -other.transform.forward)
if (other.GetContact(0).normal == other.transform.forward
|| other.GetContact(0).normal == -other.transform.forward
|| (other.GetContact(0).normal != -other.transform.up
&& other.GetContact(0).normal != other.transform.up
&& other.GetContact(0).normal != other.transform.right
&& other.GetContact(0).normal != -other.transform.right)
)
{
return;
}