@@ -34,9 +34,18 @@ public void init()
34
34
bool doContactDetect ;
35
35
public bool Ladding
36
36
{
37
+ // get { return contactGround; }
37
38
get { return contactGround || ( heightToFloor < 0.1f ) ; }
38
39
}
39
40
41
+ Vector3 getGroundOrFloorNormal ( )
42
+ {
43
+ if ( contactGround )
44
+ return contactGroundNormal ;
45
+ else
46
+ return hitFloorNormal ;
47
+ }
48
+
40
49
static float max_cos_value = Mathf . Cos ( 80 * Mathf . Deg2Rad ) ;
41
50
static float min_cos_value = Mathf . Cos ( 100 * Mathf . Deg2Rad ) ;
42
51
bool isWallNormal ( Vector3 normal )
@@ -45,7 +54,7 @@ bool isWallNormal(Vector3 normal)
45
54
return ( dotValue > min_cos_value && dotValue < max_cos_value ) ;
46
55
}
47
56
48
- /* 接觸相關:rigid on collder */
57
+ /* 接觸相關 */
49
58
50
59
// https://docs.unity3d.com/Manual/ExecutionOrder.html
51
60
// 執行順序
@@ -58,7 +67,8 @@ bool isWallNormal(Vector3 normal)
58
67
List < ContactPoint > contactPointWall ;
59
68
60
69
// 收集contanct資訊並分類(有可能同時碰到2個以上的物件)
61
- // 這裡只有rigid和collider相碰會觸發
70
+ // rigid on collider | rigid on rigid
71
+ // kinematic rigidbody 不行
62
72
void OnCollisionStay ( Collision collision )
63
73
{
64
74
if ( ! doContactDetect )
@@ -96,7 +106,7 @@ bool hasContact(List<ContactPoint> list, ref Vector3 contactNormal, Color color)
96
106
{
97
107
int listCount = list . Count ;
98
108
bool contact = false ;
99
- // 想看所有的contactGroundNormal
109
+ // 想看所有的normal
100
110
for ( int x = 0 ; x < listCount ; x ++ )
101
111
{
102
112
var cp = list [ x ] ;
@@ -122,11 +132,15 @@ public Vector3 TouchWallNormal
122
132
get { return touchWallNormal ; }
123
133
}
124
134
125
- /* 接觸相關:rigid on rigid (跳上摩天輪和電纜需要 ) */
135
+ /* 接觸相關:(跳上摩天輪和電纜需要,因為 它們的parent有 kinematic rigidbody ) */
126
136
public float heightToFloor ;
127
- bool isHitFloor ;
137
+ bool isHitFloor = false ;
128
138
Vector3 hitFloorNormal ;
129
139
Vector3 hitFloorPos ;
140
+ public Vector3 HitFloorPos
141
+ {
142
+ get => hitFloorPos ;
143
+ }
130
144
void hitFloor ( )
131
145
{
132
146
float rayCastDistance = 5 ;
@@ -139,7 +153,7 @@ void hitFloor()
139
153
isHitFloor = false ;
140
154
141
155
RaycastHit hit ;
142
- int layerMask = 1 << LayerDefined . Border | 1 << LayerDefined . BorderBlockCamera ;
156
+ int layerMask = 1 << LayerDefined . HitFloor ;
143
157
if ( Physics . Raycast ( from , - upDir , out hit , rayCastDistance , layerMask ) )
144
158
{
145
159
heightToFloor = ( hit . point - from ) . magnitude - rayFromUpOffset ;
@@ -236,7 +250,7 @@ public void executeMoving(Vector3 moveForce)
236
250
// 貼著地板移動
237
251
if ( Ladding )
238
252
{
239
- moveForce = Vector3 . ProjectOnPlane ( moveForce , contactGroundNormal ) ;
253
+ moveForce = Vector3 . ProjectOnPlane ( moveForce , getGroundOrFloorNormal ( ) ) ;
240
254
moveForce . Normalize ( ) ;
241
255
Debug . DrawRay ( transform . position + transform . up , moveForce * debugLen , Color . blue ) ;
242
256
}
@@ -255,7 +269,7 @@ public void executeMoving(Vector3 moveForce)
255
269
256
270
// 處理斜坡
257
271
if ( slopeForceMonitor != null && Ladding )
258
- moveForceWithStrength = slopeForceMonitor . modifyMoveForce ( moveForceWithStrength , moveForceParameter . getGravityForceStrength ( ! Ladding ) , upDir , contactGroundNormal ) ;
272
+ moveForceWithStrength = slopeForceMonitor . modifyMoveForce ( moveForceWithStrength , moveForceParameter . getGravityForceStrength ( ! Ladding ) , upDir , getGroundOrFloorNormal ( ) ) ;
259
273
260
274
// 移動
261
275
rigid . AddForce ( moveForceWithStrength , ForceMode . Acceleration ) ;
0 commit comments