Skip to content

Commit 8543165

Browse files
author
xwc2022
committed
加入Layer「HitFloor」給kinematicRigidbody用:因為OnCollisionStay收集不到它的接觸資訊
1 parent d403893 commit 8543165

File tree

11 files changed

+33
-16
lines changed

11 files changed

+33
-16
lines changed
Binary file not shown.

Assets/Prefab/machine/Gradle.prefab

0 Bytes
Binary file not shown.
Binary file not shown.

Assets/Scenes/45degree.unity

1000 Bytes
Binary file not shown.

Assets/Scenes/LineUp.unity

0 Bytes
Binary file not shown.

Assets/Scenes/knot.unity

0 Bytes
Binary file not shown.

Assets/scripts/Controller/PlanetPlayerController.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ void processJump()
151151
//跳
152152
if (planetMovable.Ladding)
153153
{
154-
// Ladding mark
155-
Debug.DrawRay(transform.position, -transform.up, Color.green);
154+
// 標示 HitFloorPos
155+
Debug.DrawRay(planetMovable.HitFloorPos, -transform.up * 0.25f, Color.green);
156156
if (doJump)
157157
{
158158
if (measuringJumpHeight != null)

Assets/scripts/Move/PlanetMovable.cs

+22-8
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,18 @@ public void init()
3434
bool doContactDetect;
3535
public bool Ladding
3636
{
37+
// get { return contactGround; }
3738
get { return contactGround || (heightToFloor < 0.1f); }
3839
}
3940

41+
Vector3 getGroundOrFloorNormal()
42+
{
43+
if (contactGround)
44+
return contactGroundNormal;
45+
else
46+
return hitFloorNormal;
47+
}
48+
4049
static float max_cos_value = Mathf.Cos(80 * Mathf.Deg2Rad);
4150
static float min_cos_value = Mathf.Cos(100 * Mathf.Deg2Rad);
4251
bool isWallNormal(Vector3 normal)
@@ -45,7 +54,7 @@ bool isWallNormal(Vector3 normal)
4554
return (dotValue > min_cos_value && dotValue < max_cos_value);
4655
}
4756

48-
/* 接觸相關:rigid on collder */
57+
/* 接觸相關 */
4958

5059
// https://docs.unity3d.com/Manual/ExecutionOrder.html
5160
// 執行順序
@@ -58,7 +67,8 @@ bool isWallNormal(Vector3 normal)
5867
List<ContactPoint> contactPointWall;
5968

6069
// 收集contanct資訊並分類(有可能同時碰到2個以上的物件)
61-
// 這裡只有rigid和collider相碰會觸發
70+
// rigid on collider | rigid on rigid
71+
// kinematic rigidbody 不行
6272
void OnCollisionStay(Collision collision)
6373
{
6474
if (!doContactDetect)
@@ -96,7 +106,7 @@ bool hasContact(List<ContactPoint> list, ref Vector3 contactNormal, Color color)
96106
{
97107
int listCount = list.Count;
98108
bool contact = false;
99-
// 想看所有的contactGroundNormal
109+
// 想看所有的normal
100110
for (int x = 0; x < listCount; x++)
101111
{
102112
var cp = list[x];
@@ -122,11 +132,15 @@ public Vector3 TouchWallNormal
122132
get { return touchWallNormal; }
123133
}
124134

125-
/* 接觸相關:rigid on rigid (跳上摩天輪和電纜需要) */
135+
/* 接觸相關:(跳上摩天輪和電纜需要,因為 它們的parent有 kinematic rigidbody) */
126136
public float heightToFloor;
127-
bool isHitFloor;
137+
bool isHitFloor = false;
128138
Vector3 hitFloorNormal;
129139
Vector3 hitFloorPos;
140+
public Vector3 HitFloorPos
141+
{
142+
get => hitFloorPos;
143+
}
130144
void hitFloor()
131145
{
132146
float rayCastDistance = 5;
@@ -139,7 +153,7 @@ void hitFloor()
139153
isHitFloor = false;
140154

141155
RaycastHit hit;
142-
int layerMask = 1 << LayerDefined.Border | 1 << LayerDefined.BorderBlockCamera;
156+
int layerMask = 1 << LayerDefined.HitFloor;
143157
if (Physics.Raycast(from, -upDir, out hit, rayCastDistance, layerMask))
144158
{
145159
heightToFloor = (hit.point - from).magnitude - rayFromUpOffset;
@@ -236,7 +250,7 @@ public void executeMoving(Vector3 moveForce)
236250
// 貼著地板移動
237251
if (Ladding)
238252
{
239-
moveForce = Vector3.ProjectOnPlane(moveForce, contactGroundNormal);
253+
moveForce = Vector3.ProjectOnPlane(moveForce, getGroundOrFloorNormal());
240254
moveForce.Normalize();
241255
Debug.DrawRay(transform.position + transform.up, moveForce * debugLen, Color.blue);
242256
}
@@ -255,7 +269,7 @@ public void executeMoving(Vector3 moveForce)
255269

256270
// 處理斜坡
257271
if (slopeForceMonitor != null && Ladding)
258-
moveForceWithStrength = slopeForceMonitor.modifyMoveForce(moveForceWithStrength, moveForceParameter.getGravityForceStrength(!Ladding), upDir, contactGroundNormal);
272+
moveForceWithStrength = slopeForceMonitor.modifyMoveForce(moveForceWithStrength, moveForceParameter.getGravityForceStrength(!Ladding), upDir, getGroundOrFloorNormal());
259273

260274
// 移動
261275
rigid.AddForce(moveForceWithStrength, ForceMode.Acceleration);

Assets/scripts/Shared/LayerDefined.cs

+3
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,7 @@ public class LayerDefined
99
public static readonly int BorderNoAvoid = LayerMask.NameToLayer("BorderNoAvoid");
1010
public static readonly int BlockCamera = LayerMask.NameToLayer("BlockCamera");
1111

12+
public static readonly int HitFloor = LayerMask.NameToLayer("HitFloor");
13+
14+
1215
}

ProjectSettings/TagManager.asset

8 Bytes
Binary file not shown.

UserSettings/EditorUserSettings.asset

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,25 @@ EditorUserSettings:
1515
value: 22424703114646680e0b0227036c7b1f18020c39623d28393930
1616
flags: 0
1717
RecentlyUsedScenePath-3:
18-
value: 22424703114646680e0b0227036c731918122d3a623d28393930
18+
value: 224247031146466b0c0d076d342a462413050a2b252669233d211821e7df203df0f537e0e9742a323016f6
1919
flags: 0
2020
RecentlyUsedScenePath-4:
21-
value: 22424703114646680e0b0227036c4f1c17191d3e623d28393930
21+
value: 224247031146466b0c0d076d27224b15045835233e3a29221a280936f0ae2136ebf32f
2222
flags: 0
2323
RecentlyUsedScenePath-5:
24-
value: 224247031146466b0c0d076d342a462413050a2b252669233d211821e7df203df0f537e0e9742a323016f6
24+
value: 22424703114646680e0b0227036c4f1c17191d3e623d28393930
2525
flags: 0
2626
RecentlyUsedScenePath-6:
2727
value: 22424703114646680e0b0227036c0d1419190d3e3f66333e243d04
2828
flags: 0
2929
RecentlyUsedScenePath-7:
30-
value: 224247031146466b0c0d076d27224b15045835233e3a29221a280936f0ae2136ebf32f
30+
value: 22424703114646680e0b0227036c541e1903563f22213229
3131
flags: 0
3232
RecentlyUsedScenePath-8:
33-
value: 22424703114646680e0b0227036c0b4512121f38292d68252320092a
33+
value: 22424703114646680e0b0227036c731918122d3a623d28393930
3434
flags: 0
3535
RecentlyUsedScenePath-9:
36-
value: 22424703114646680e0b0227036c541e1903563f22213229
36+
value: 22424703114646680e0b0227036c0b4512121f38292d68252320092a
3737
flags: 0
3838
UnityEditor.ShaderGraph.Blackboard:
3939
value: 18135939215a0a5004000b0e15254b524c030a3f2964643d120d1230e9e93a3fd6e826abbd2e2d293c4ead313b08042de6030a0afa240c0d020be94c4ba75e435d8715fa32c70d15d11612dacc11fee5d3c5d1fe9ab1bf968e93e2ffcbc3e7e2f0b3ffe0e8b0be9af8ffaeffff8e85dd8390e3949c8899daa7

0 commit comments

Comments
 (0)