onejs-core 0.3.18 → 0.3.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/definitions/Assemblies/OneJS.Runtime.d.ts +761 -0
- package/definitions/Assemblies/OneJS.Samples.d.ts +0 -0
- package/definitions/Assemblies/Unity.Mathematics.d.ts +9221 -0
- package/definitions/Assemblies/UnityEditor.CoreModule.d.ts +32614 -0
- package/definitions/Assemblies/UnityEngine.AIModule.d.ts +998 -0
- package/definitions/Assemblies/UnityEngine.AnimationModule.d.ts +3308 -0
- package/definitions/Assemblies/UnityEngine.AssetBundleModule.d.ts +337 -0
- package/definitions/Assemblies/UnityEngine.AudioModule.d.ts +1154 -0
- package/definitions/Assemblies/UnityEngine.CoreModule.d.ts +29587 -0
- package/definitions/Assemblies/UnityEngine.IMGUIModule.d.ts +0 -0
- package/definitions/Assemblies/UnityEngine.PhysicsModule.d.ts +3137 -0
- package/definitions/Assemblies/UnityEngine.TerrainModule.d.ts +1270 -0
- package/definitions/Assemblies/UnityEngine.TextRenderingModule.d.ts +0 -0
- package/definitions/Assemblies/UnityEngine.UIElementsModule.d.ts +32521 -0
- package/definitions/Assemblies/UnityEngine.UnityAnalyticsCommonModule.d.ts +274 -0
- package/definitions/Assemblies/index.d.ts +16 -0
- package/definitions/Assemblies/mscorlib.d.ts +19416 -0
- package/definitions/app.d.ts +0 -55247
- package/definitions/index.d.ts +3 -1
- package/definitions/unity-editor.d.ts +0 -0
- package/dist/styling/index.js +4 -0
- package/package.json +1 -1
- package/scripts/esbuild/copy-assets.mjs +4 -1
- package/scripts/onejs-tw-config.cjs +2 -1
- package/styling/index.tsx +5 -0
- package/tsconfig.json +1 -1
|
@@ -0,0 +1,3137 @@
|
|
|
1
|
+
|
|
2
|
+
declare namespace CS {
|
|
3
|
+
// const __keep_incompatibility: unique symbol;
|
|
4
|
+
//
|
|
5
|
+
// interface $Ref<T> {
|
|
6
|
+
// value: T
|
|
7
|
+
// }
|
|
8
|
+
// namespace System {
|
|
9
|
+
// interface Array$1<T> extends System.Array {
|
|
10
|
+
// get_Item(index: number):T;
|
|
11
|
+
//
|
|
12
|
+
// set_Item(index: number, value: T):void;
|
|
13
|
+
// }
|
|
14
|
+
// }
|
|
15
|
+
// interface $Task<T> {}
|
|
16
|
+
namespace UnityEngine {
|
|
17
|
+
/** Use these flags to constrain motion of Rigidbodies.
|
|
18
|
+
*/
|
|
19
|
+
enum RigidbodyConstraints
|
|
20
|
+
{ None = 0, FreezePositionX = 2, FreezePositionY = 4, FreezePositionZ = 8, FreezeRotationX = 16, FreezeRotationY = 32, FreezeRotationZ = 64, FreezePosition = 14, FreezeRotation = 112, FreezeAll = 126 }
|
|
21
|
+
/** Use ForceMode to specify how to apply a force using Rigidbody.AddForce or ArticulationBody.AddForce.
|
|
22
|
+
*/
|
|
23
|
+
enum ForceMode
|
|
24
|
+
{ Force = 0, Acceleration = 5, Impulse = 1, VelocityChange = 2 }
|
|
25
|
+
/** Determines how to snap physics joints back to its constrained position when it drifts off too much.
|
|
26
|
+
*/
|
|
27
|
+
enum JointProjectionMode
|
|
28
|
+
{ None = 0, PositionAndRotation = 1, PositionOnly = 2 }
|
|
29
|
+
/** Cooking options that are available with MeshCollider.
|
|
30
|
+
*/
|
|
31
|
+
enum MeshColliderCookingOptions
|
|
32
|
+
{ None = 0, InflateConvexMesh = 1, CookForFasterSimulation = 2, EnableMeshCleaning = 4, WeldColocatedVertices = 8, UseFastMidphase = 16 }
|
|
33
|
+
/** WheelFrictionCurve is used by the WheelCollider to describe friction properties of the wheel tire.
|
|
34
|
+
*/
|
|
35
|
+
class WheelFrictionCurve extends System.ValueType
|
|
36
|
+
{
|
|
37
|
+
protected [__keep_incompatibility]: never;
|
|
38
|
+
/** Extremum point slip (default 1).
|
|
39
|
+
*/
|
|
40
|
+
public get extremumSlip(): number;
|
|
41
|
+
public set extremumSlip(value: number);
|
|
42
|
+
/** Force at the extremum slip (default 20000).
|
|
43
|
+
*/
|
|
44
|
+
public get extremumValue(): number;
|
|
45
|
+
public set extremumValue(value: number);
|
|
46
|
+
/** Asymptote point slip (default 2).
|
|
47
|
+
*/
|
|
48
|
+
public get asymptoteSlip(): number;
|
|
49
|
+
public set asymptoteSlip(value: number);
|
|
50
|
+
/** Force at the asymptote slip (default 10000).
|
|
51
|
+
*/
|
|
52
|
+
public get asymptoteValue(): number;
|
|
53
|
+
public set asymptoteValue(value: number);
|
|
54
|
+
/** Multiplier for the extremumValue and asymptoteValue values (default 1).
|
|
55
|
+
*/
|
|
56
|
+
public get stiffness(): number;
|
|
57
|
+
public set stiffness(value: number);
|
|
58
|
+
}
|
|
59
|
+
/** The limits defined by the CharacterJoint.
|
|
60
|
+
*/
|
|
61
|
+
class SoftJointLimit extends System.ValueType
|
|
62
|
+
{
|
|
63
|
+
protected [__keep_incompatibility]: never;
|
|
64
|
+
/** The limit position/angle of the joint (in degrees).
|
|
65
|
+
*/
|
|
66
|
+
public get limit(): number;
|
|
67
|
+
public set limit(value: number);
|
|
68
|
+
/** When the joint hits the limit, it can be made to bounce off it.
|
|
69
|
+
*/
|
|
70
|
+
public get bounciness(): number;
|
|
71
|
+
public set bounciness(value: number);
|
|
72
|
+
/** Determines how far ahead in space the solver can "see" the joint limit.
|
|
73
|
+
*/
|
|
74
|
+
public get contactDistance(): number;
|
|
75
|
+
public set contactDistance(value: number);
|
|
76
|
+
}
|
|
77
|
+
/** The configuration of the spring attached to the joint's limits: linear and angular. Used by CharacterJoint and ConfigurableJoint.
|
|
78
|
+
*/
|
|
79
|
+
class SoftJointLimitSpring extends System.ValueType
|
|
80
|
+
{
|
|
81
|
+
protected [__keep_incompatibility]: never;
|
|
82
|
+
/** The stiffness of the spring limit. When stiffness is zero the limit is hard, otherwise soft.
|
|
83
|
+
*/
|
|
84
|
+
public get spring(): number;
|
|
85
|
+
public set spring(value: number);
|
|
86
|
+
/** The damping of the spring limit. In effect when the stiffness of the sprint limit is not zero.
|
|
87
|
+
*/
|
|
88
|
+
public get damper(): number;
|
|
89
|
+
public set damper(value: number);
|
|
90
|
+
}
|
|
91
|
+
/** How the joint's movement will behave along its local X axis.
|
|
92
|
+
*/
|
|
93
|
+
class JointDrive extends System.ValueType
|
|
94
|
+
{
|
|
95
|
+
protected [__keep_incompatibility]: never;
|
|
96
|
+
/** Strength of a rubber-band pull toward the defined direction. Only used if mode includes Position.
|
|
97
|
+
*/
|
|
98
|
+
public get positionSpring(): number;
|
|
99
|
+
public set positionSpring(value: number);
|
|
100
|
+
/** Resistance strength against the Position Spring. Only used if mode includes Position.
|
|
101
|
+
*/
|
|
102
|
+
public get positionDamper(): number;
|
|
103
|
+
public set positionDamper(value: number);
|
|
104
|
+
/** Amount of force applied to push the object toward the defined direction.
|
|
105
|
+
*/
|
|
106
|
+
public get maximumForce(): number;
|
|
107
|
+
public set maximumForce(value: number);
|
|
108
|
+
/** Defines whether the drive is an acceleration drive or a force drive.
|
|
109
|
+
*/
|
|
110
|
+
public get useAcceleration(): boolean;
|
|
111
|
+
public set useAcceleration(value: boolean);
|
|
112
|
+
}
|
|
113
|
+
/** The ConfigurableJoint attempts to attain position / velocity targets based on this flag.
|
|
114
|
+
*/
|
|
115
|
+
enum JointDriveMode
|
|
116
|
+
{ None = 0, Position = 1, Velocity = 2, PositionAndVelocity = 3 }
|
|
117
|
+
/** Rigidbody interpolation mode.
|
|
118
|
+
*/
|
|
119
|
+
enum RigidbodyInterpolation
|
|
120
|
+
{ None = 0, Interpolate = 1, Extrapolate = 2 }
|
|
121
|
+
/** The JointMotor is used to motorize a joint.
|
|
122
|
+
*/
|
|
123
|
+
class JointMotor extends System.ValueType
|
|
124
|
+
{
|
|
125
|
+
protected [__keep_incompatibility]: never;
|
|
126
|
+
/** The motor will apply a force up to force to achieve targetVelocity.
|
|
127
|
+
*/
|
|
128
|
+
public get targetVelocity(): number;
|
|
129
|
+
public set targetVelocity(value: number);
|
|
130
|
+
/** The motor will apply a force.
|
|
131
|
+
*/
|
|
132
|
+
public get force(): number;
|
|
133
|
+
public set force(value: number);
|
|
134
|
+
/** If freeSpin is enabled the motor will only accelerate but never slow down.
|
|
135
|
+
*/
|
|
136
|
+
public get freeSpin(): boolean;
|
|
137
|
+
public set freeSpin(value: boolean);
|
|
138
|
+
}
|
|
139
|
+
/** JointSpring is used add a spring force to HingeJoint and PhysicMaterial.
|
|
140
|
+
*/
|
|
141
|
+
class JointSpring extends System.ValueType
|
|
142
|
+
{
|
|
143
|
+
protected [__keep_incompatibility]: never;
|
|
144
|
+
/** The spring forces used to reach the target position.
|
|
145
|
+
*/
|
|
146
|
+
public spring : number
|
|
147
|
+
/** The damper force uses to dampen the spring.
|
|
148
|
+
*/
|
|
149
|
+
public damper : number
|
|
150
|
+
/** The target position the joint attempts to reach.
|
|
151
|
+
*/
|
|
152
|
+
public targetPosition : number
|
|
153
|
+
}
|
|
154
|
+
/** JointLimits is used by the HingeJoint to limit the joints angle.
|
|
155
|
+
*/
|
|
156
|
+
class JointLimits extends System.ValueType
|
|
157
|
+
{
|
|
158
|
+
protected [__keep_incompatibility]: never;
|
|
159
|
+
/** The lower angular limit (in degrees) of the joint.
|
|
160
|
+
*/
|
|
161
|
+
public get min(): number;
|
|
162
|
+
public set min(value: number);
|
|
163
|
+
/** The upper angular limit (in degrees) of the joint.
|
|
164
|
+
*/
|
|
165
|
+
public get max(): number;
|
|
166
|
+
public set max(value: number);
|
|
167
|
+
/** Determines the size of the bounce when the joint hits it's limit. Also known as restitution.
|
|
168
|
+
*/
|
|
169
|
+
public get bounciness(): number;
|
|
170
|
+
public set bounciness(value: number);
|
|
171
|
+
/** The minimum impact velocity which will cause the joint to bounce.
|
|
172
|
+
*/
|
|
173
|
+
public get bounceMinVelocity(): number;
|
|
174
|
+
public set bounceMinVelocity(value: number);
|
|
175
|
+
/** Distance inside the limit value at which the limit will be considered to be active by the solver.
|
|
176
|
+
*/
|
|
177
|
+
public get contactDistance(): number;
|
|
178
|
+
public set contactDistance(value: number);
|
|
179
|
+
}
|
|
180
|
+
/** ControllerColliderHit is used by CharacterController.OnControllerColliderHit to give detailed information about the collision and how to deal with it.
|
|
181
|
+
*/
|
|
182
|
+
class ControllerColliderHit extends System.Object
|
|
183
|
+
{
|
|
184
|
+
protected [__keep_incompatibility]: never;
|
|
185
|
+
/** The controller that hit the collider.
|
|
186
|
+
*/
|
|
187
|
+
public get controller(): UnityEngine.CharacterController;
|
|
188
|
+
/** The collider that was hit by the controller.
|
|
189
|
+
*/
|
|
190
|
+
public get collider(): UnityEngine.Collider;
|
|
191
|
+
/** The rigidbody that was hit by the controller.
|
|
192
|
+
*/
|
|
193
|
+
public get rigidbody(): UnityEngine.Rigidbody;
|
|
194
|
+
/** The game object that was hit by the controller.
|
|
195
|
+
*/
|
|
196
|
+
public get gameObject(): UnityEngine.GameObject;
|
|
197
|
+
/** The transform that was hit by the controller.
|
|
198
|
+
*/
|
|
199
|
+
public get transform(): UnityEngine.Transform;
|
|
200
|
+
/** The impact point in world space.
|
|
201
|
+
*/
|
|
202
|
+
public get point(): UnityEngine.Vector3;
|
|
203
|
+
/** The normal of the surface we collided with in world space.
|
|
204
|
+
*/
|
|
205
|
+
public get normal(): UnityEngine.Vector3;
|
|
206
|
+
/** The direction the CharacterController was moving in when the collision occured.
|
|
207
|
+
*/
|
|
208
|
+
public get moveDirection(): UnityEngine.Vector3;
|
|
209
|
+
/** How far the character has travelled until it hit the collider.
|
|
210
|
+
*/
|
|
211
|
+
public get moveLength(): number;
|
|
212
|
+
public constructor ()
|
|
213
|
+
}
|
|
214
|
+
/** A base class of all colliders.
|
|
215
|
+
*/
|
|
216
|
+
class Collider extends UnityEngine.Component
|
|
217
|
+
{
|
|
218
|
+
protected [__keep_incompatibility]: never;
|
|
219
|
+
/** Enabled Colliders will collide with other Colliders, disabled Colliders won't.
|
|
220
|
+
*/
|
|
221
|
+
public get enabled(): boolean;
|
|
222
|
+
public set enabled(value: boolean);
|
|
223
|
+
/** The rigidbody the collider is attached to.
|
|
224
|
+
*/
|
|
225
|
+
public get attachedRigidbody(): UnityEngine.Rigidbody;
|
|
226
|
+
/** The articulation body the collider is attached to.
|
|
227
|
+
*/
|
|
228
|
+
public get attachedArticulationBody(): UnityEngine.ArticulationBody;
|
|
229
|
+
/** Specify if this collider is configured as a trigger.
|
|
230
|
+
*/
|
|
231
|
+
public get isTrigger(): boolean;
|
|
232
|
+
public set isTrigger(value: boolean);
|
|
233
|
+
/** Contact offset value of this collider.
|
|
234
|
+
*/
|
|
235
|
+
public get contactOffset(): number;
|
|
236
|
+
public set contactOffset(value: number);
|
|
237
|
+
/** The world space bounding volume of the collider (Read Only).
|
|
238
|
+
*/
|
|
239
|
+
public get bounds(): UnityEngine.Bounds;
|
|
240
|
+
/** Specify whether this Collider's contacts are modifiable or not.
|
|
241
|
+
*/
|
|
242
|
+
public get hasModifiableContacts(): boolean;
|
|
243
|
+
public set hasModifiableContacts(value: boolean);
|
|
244
|
+
/** Whether or not this Collider generates contacts for Physics.ContactEvent.
|
|
245
|
+
*/
|
|
246
|
+
public get providesContacts(): boolean;
|
|
247
|
+
public set providesContacts(value: boolean);
|
|
248
|
+
/** A decision priority assigned to this Collider used when there is a conflicting decision on whether a Collider can contact another Collider.
|
|
249
|
+
*/
|
|
250
|
+
public get layerOverridePriority(): number;
|
|
251
|
+
public set layerOverridePriority(value: number);
|
|
252
|
+
/** The additional layers that this Collider should exclude when deciding if the Collider can contact another Collider.
|
|
253
|
+
*/
|
|
254
|
+
public get excludeLayers(): UnityEngine.LayerMask;
|
|
255
|
+
public set excludeLayers(value: UnityEngine.LayerMask);
|
|
256
|
+
/** The additional layers that this Collider should include when deciding if the Collider can contact another Collider.
|
|
257
|
+
*/
|
|
258
|
+
public get includeLayers(): UnityEngine.LayerMask;
|
|
259
|
+
public set includeLayers(value: UnityEngine.LayerMask);
|
|
260
|
+
/** The structure holding the geometric shape of the collider and its type. (Read Only)
|
|
261
|
+
*/
|
|
262
|
+
public get GeometryHolder(): UnityEngine.LowLevelPhysics.GeometryHolder;
|
|
263
|
+
/** The shared physic material of this collider.
|
|
264
|
+
*/
|
|
265
|
+
public get sharedMaterial(): UnityEngine.PhysicMaterial;
|
|
266
|
+
public set sharedMaterial(value: UnityEngine.PhysicMaterial);
|
|
267
|
+
/** The material used by the collider.
|
|
268
|
+
*/
|
|
269
|
+
public get material(): UnityEngine.PhysicMaterial;
|
|
270
|
+
public set material(value: UnityEngine.PhysicMaterial);
|
|
271
|
+
/** Returns a point on the collider that is closest to a given location.
|
|
272
|
+
* @param $position Location you want to find the closest point to.
|
|
273
|
+
* @returns The point on the collider that is closest to the specified location.
|
|
274
|
+
*/
|
|
275
|
+
public ClosestPoint ($position: UnityEngine.Vector3) : UnityEngine.Vector3
|
|
276
|
+
/** Casts a Ray that ignores all Colliders except this one.
|
|
277
|
+
* @param $ray The starting point and direction of the ray.
|
|
278
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the collider was hit.
|
|
279
|
+
* @param $maxDistance The max length of the ray.
|
|
280
|
+
* @returns True when the ray intersects the collider, otherwise false.
|
|
281
|
+
*/
|
|
282
|
+
public Raycast ($ray: UnityEngine.Ray, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number) : boolean
|
|
283
|
+
/** The closest point to the bounding box of the attached collider.
|
|
284
|
+
*/
|
|
285
|
+
public ClosestPointOnBounds ($position: UnityEngine.Vector3) : UnityEngine.Vector3
|
|
286
|
+
public constructor ()
|
|
287
|
+
}
|
|
288
|
+
/** A CharacterController allows you to easily do movement constrained by collisions without having to deal with a rigidbody.
|
|
289
|
+
*/
|
|
290
|
+
class CharacterController extends UnityEngine.Collider
|
|
291
|
+
{
|
|
292
|
+
protected [__keep_incompatibility]: never;
|
|
293
|
+
/** The current relative velocity of the Character (see notes).
|
|
294
|
+
*/
|
|
295
|
+
public get velocity(): UnityEngine.Vector3;
|
|
296
|
+
/** Was the CharacterController touching the ground during the last move?
|
|
297
|
+
*/
|
|
298
|
+
public get isGrounded(): boolean;
|
|
299
|
+
/** What part of the capsule collided with the environment during the last CharacterController.Move call.
|
|
300
|
+
*/
|
|
301
|
+
public get collisionFlags(): UnityEngine.CollisionFlags;
|
|
302
|
+
/** The radius of the character's capsule.
|
|
303
|
+
*/
|
|
304
|
+
public get radius(): number;
|
|
305
|
+
public set radius(value: number);
|
|
306
|
+
/** The height of the character's capsule.
|
|
307
|
+
*/
|
|
308
|
+
public get height(): number;
|
|
309
|
+
public set height(value: number);
|
|
310
|
+
/** The center of the character's capsule relative to the transform's position.
|
|
311
|
+
*/
|
|
312
|
+
public get center(): UnityEngine.Vector3;
|
|
313
|
+
public set center(value: UnityEngine.Vector3);
|
|
314
|
+
/** The character controllers slope limit in degrees.
|
|
315
|
+
*/
|
|
316
|
+
public get slopeLimit(): number;
|
|
317
|
+
public set slopeLimit(value: number);
|
|
318
|
+
/** The character controllers step offset in meters.
|
|
319
|
+
*/
|
|
320
|
+
public get stepOffset(): number;
|
|
321
|
+
public set stepOffset(value: number);
|
|
322
|
+
/** The character's collision skin width.
|
|
323
|
+
*/
|
|
324
|
+
public get skinWidth(): number;
|
|
325
|
+
public set skinWidth(value: number);
|
|
326
|
+
/** Gets or sets the minimum move distance of the character controller.
|
|
327
|
+
*/
|
|
328
|
+
public get minMoveDistance(): number;
|
|
329
|
+
public set minMoveDistance(value: number);
|
|
330
|
+
/** Determines whether other rigidbodies or character controllers collide with this character controller (by default this is always enabled).
|
|
331
|
+
*/
|
|
332
|
+
public get detectCollisions(): boolean;
|
|
333
|
+
public set detectCollisions(value: boolean);
|
|
334
|
+
/** Enables or disables overlap recovery.
|
|
335
|
+
Enables or disables overlap recovery. Used to depenetrate character controllers from static objects when an overlap is detected.
|
|
336
|
+
*/
|
|
337
|
+
public get enableOverlapRecovery(): boolean;
|
|
338
|
+
public set enableOverlapRecovery(value: boolean);
|
|
339
|
+
/** Moves the character with speed.
|
|
340
|
+
*/
|
|
341
|
+
public SimpleMove ($speed: UnityEngine.Vector3) : boolean
|
|
342
|
+
/** Supplies the movement of a GameObject with an attached CharacterController component.
|
|
343
|
+
*/
|
|
344
|
+
public Move ($motion: UnityEngine.Vector3) : UnityEngine.CollisionFlags
|
|
345
|
+
public constructor ()
|
|
346
|
+
}
|
|
347
|
+
/** Control of an object's position through physics simulation.
|
|
348
|
+
*/
|
|
349
|
+
class Rigidbody extends UnityEngine.Component
|
|
350
|
+
{
|
|
351
|
+
protected [__keep_incompatibility]: never;
|
|
352
|
+
/** The velocity vector of the rigidbody. It represents the rate of change of Rigidbody position.
|
|
353
|
+
*/
|
|
354
|
+
public get velocity(): UnityEngine.Vector3;
|
|
355
|
+
public set velocity(value: UnityEngine.Vector3);
|
|
356
|
+
/** The angular velocity vector of the rigidbody measured in radians per second.
|
|
357
|
+
*/
|
|
358
|
+
public get angularVelocity(): UnityEngine.Vector3;
|
|
359
|
+
public set angularVelocity(value: UnityEngine.Vector3);
|
|
360
|
+
/** The drag of the object.
|
|
361
|
+
*/
|
|
362
|
+
public get drag(): number;
|
|
363
|
+
public set drag(value: number);
|
|
364
|
+
/** The angular drag of the object.
|
|
365
|
+
*/
|
|
366
|
+
public get angularDrag(): number;
|
|
367
|
+
public set angularDrag(value: number);
|
|
368
|
+
/** The mass of the rigidbody.
|
|
369
|
+
*/
|
|
370
|
+
public get mass(): number;
|
|
371
|
+
public set mass(value: number);
|
|
372
|
+
/** Controls whether gravity affects this rigidbody.
|
|
373
|
+
*/
|
|
374
|
+
public get useGravity(): boolean;
|
|
375
|
+
public set useGravity(value: boolean);
|
|
376
|
+
/** Maximum velocity of a rigidbody when moving out of penetrating state.
|
|
377
|
+
*/
|
|
378
|
+
public get maxDepenetrationVelocity(): number;
|
|
379
|
+
public set maxDepenetrationVelocity(value: number);
|
|
380
|
+
/** Controls whether physics affects the rigidbody.
|
|
381
|
+
*/
|
|
382
|
+
public get isKinematic(): boolean;
|
|
383
|
+
public set isKinematic(value: boolean);
|
|
384
|
+
/** Controls whether physics will change the rotation of the object.
|
|
385
|
+
*/
|
|
386
|
+
public get freezeRotation(): boolean;
|
|
387
|
+
public set freezeRotation(value: boolean);
|
|
388
|
+
/** Controls which degrees of freedom are allowed for the simulation of this Rigidbody.
|
|
389
|
+
*/
|
|
390
|
+
public get constraints(): UnityEngine.RigidbodyConstraints;
|
|
391
|
+
public set constraints(value: UnityEngine.RigidbodyConstraints);
|
|
392
|
+
/** The Rigidbody's collision detection mode.
|
|
393
|
+
*/
|
|
394
|
+
public get collisionDetectionMode(): UnityEngine.CollisionDetectionMode;
|
|
395
|
+
public set collisionDetectionMode(value: UnityEngine.CollisionDetectionMode);
|
|
396
|
+
/** Whether or not to calculate the center of mass automatically.
|
|
397
|
+
*/
|
|
398
|
+
public get automaticCenterOfMass(): boolean;
|
|
399
|
+
public set automaticCenterOfMass(value: boolean);
|
|
400
|
+
/** The center of mass relative to the transform's origin.
|
|
401
|
+
*/
|
|
402
|
+
public get centerOfMass(): UnityEngine.Vector3;
|
|
403
|
+
public set centerOfMass(value: UnityEngine.Vector3);
|
|
404
|
+
/** The center of mass of the rigidbody in world space (Read Only).
|
|
405
|
+
*/
|
|
406
|
+
public get worldCenterOfMass(): UnityEngine.Vector3;
|
|
407
|
+
/** Whether or not to calculate the inertia tensor automatically.
|
|
408
|
+
*/
|
|
409
|
+
public get automaticInertiaTensor(): boolean;
|
|
410
|
+
public set automaticInertiaTensor(value: boolean);
|
|
411
|
+
/** The rotation of the inertia tensor.
|
|
412
|
+
*/
|
|
413
|
+
public get inertiaTensorRotation(): UnityEngine.Quaternion;
|
|
414
|
+
public set inertiaTensorRotation(value: UnityEngine.Quaternion);
|
|
415
|
+
/** The inertia tensor of this body, defined as a diagonal matrix in a reference frame positioned at this body's center of mass and rotated by Rigidbody.inertiaTensorRotation.
|
|
416
|
+
*/
|
|
417
|
+
public get inertiaTensor(): UnityEngine.Vector3;
|
|
418
|
+
public set inertiaTensor(value: UnityEngine.Vector3);
|
|
419
|
+
/** Should collision detection be enabled? (By default always enabled).
|
|
420
|
+
*/
|
|
421
|
+
public get detectCollisions(): boolean;
|
|
422
|
+
public set detectCollisions(value: boolean);
|
|
423
|
+
/** The position of the rigidbody.
|
|
424
|
+
*/
|
|
425
|
+
public get position(): UnityEngine.Vector3;
|
|
426
|
+
public set position(value: UnityEngine.Vector3);
|
|
427
|
+
/** The rotation of the Rigidbody.
|
|
428
|
+
*/
|
|
429
|
+
public get rotation(): UnityEngine.Quaternion;
|
|
430
|
+
public set rotation(value: UnityEngine.Quaternion);
|
|
431
|
+
/** Interpolation provides a way to manage the appearance of jitter in the movement of your Rigidbody GameObjects at run time.
|
|
432
|
+
*/
|
|
433
|
+
public get interpolation(): UnityEngine.RigidbodyInterpolation;
|
|
434
|
+
public set interpolation(value: UnityEngine.RigidbodyInterpolation);
|
|
435
|
+
/** The solverIterations determines how accurately Rigidbody joints and collision contacts are resolved. Overrides Physics.defaultSolverIterations. Must be positive.
|
|
436
|
+
*/
|
|
437
|
+
public get solverIterations(): number;
|
|
438
|
+
public set solverIterations(value: number);
|
|
439
|
+
/** The mass-normalized energy threshold, below which objects start going to sleep.
|
|
440
|
+
*/
|
|
441
|
+
public get sleepThreshold(): number;
|
|
442
|
+
public set sleepThreshold(value: number);
|
|
443
|
+
/** The maximum angular velocity of the rigidbody measured in radians per second. (Default 7) range { 0, infinity }.
|
|
444
|
+
*/
|
|
445
|
+
public get maxAngularVelocity(): number;
|
|
446
|
+
public set maxAngularVelocity(value: number);
|
|
447
|
+
/** The maximum linear velocity of the rigidbody measured in meters per second.
|
|
448
|
+
*/
|
|
449
|
+
public get maxLinearVelocity(): number;
|
|
450
|
+
public set maxLinearVelocity(value: number);
|
|
451
|
+
/** The solverVelocityIterations affects how how accurately Rigidbody joints and collision contacts are resolved. Overrides Physics.defaultSolverVelocityIterations. Must be positive.
|
|
452
|
+
*/
|
|
453
|
+
public get solverVelocityIterations(): number;
|
|
454
|
+
public set solverVelocityIterations(value: number);
|
|
455
|
+
/** The additional layers that all Colliders attached to this Rigidbody should exclude when deciding if the Collider can come into contact with another Collider.
|
|
456
|
+
*/
|
|
457
|
+
public get excludeLayers(): UnityEngine.LayerMask;
|
|
458
|
+
public set excludeLayers(value: UnityEngine.LayerMask);
|
|
459
|
+
/** The additional layers that all Colliders attached to this Rigidbody should include when deciding if the Collider can come into contact with another Collider.
|
|
460
|
+
*/
|
|
461
|
+
public get includeLayers(): UnityEngine.LayerMask;
|
|
462
|
+
public set includeLayers(value: UnityEngine.LayerMask);
|
|
463
|
+
/** Sets the mass based on the attached colliders assuming a constant density.
|
|
464
|
+
*/
|
|
465
|
+
public SetDensity ($density: number) : void
|
|
466
|
+
/** Moves the kinematic Rigidbody towards position.
|
|
467
|
+
* @param $position Provides the new position for the Rigidbody object.
|
|
468
|
+
*/
|
|
469
|
+
public MovePosition ($position: UnityEngine.Vector3) : void
|
|
470
|
+
/** Rotates the rigidbody to rotation.
|
|
471
|
+
* @param $rot The new rotation for the Rigidbody.
|
|
472
|
+
*/
|
|
473
|
+
public MoveRotation ($rot: UnityEngine.Quaternion) : void
|
|
474
|
+
/** Moves the Rigidbody to position and rotates the Rigidbody to rotation.
|
|
475
|
+
* @param $position The new position for the Rigidbody.
|
|
476
|
+
* @param $rotation The new rotation for the Rigidbody.
|
|
477
|
+
*/
|
|
478
|
+
public Move ($position: UnityEngine.Vector3, $rotation: UnityEngine.Quaternion) : void
|
|
479
|
+
/** Forces a rigidbody to sleep at least one frame.
|
|
480
|
+
*/
|
|
481
|
+
public Sleep () : void
|
|
482
|
+
/** Is the rigidbody sleeping?
|
|
483
|
+
*/
|
|
484
|
+
public IsSleeping () : boolean
|
|
485
|
+
/** Forces a rigidbody to wake up.
|
|
486
|
+
*/
|
|
487
|
+
public WakeUp () : void
|
|
488
|
+
/** Reset the center of mass of the rigidbody.
|
|
489
|
+
*/
|
|
490
|
+
public ResetCenterOfMass () : void
|
|
491
|
+
/** Reset the inertia tensor value and rotation.
|
|
492
|
+
*/
|
|
493
|
+
public ResetInertiaTensor () : void
|
|
494
|
+
/** The velocity relative to the rigidbody at the point relativePoint.
|
|
495
|
+
*/
|
|
496
|
+
public GetRelativePointVelocity ($relativePoint: UnityEngine.Vector3) : UnityEngine.Vector3
|
|
497
|
+
/** The velocity of the rigidbody at the point worldPoint in global space.
|
|
498
|
+
*/
|
|
499
|
+
public GetPointVelocity ($worldPoint: UnityEngine.Vector3) : UnityEngine.Vector3
|
|
500
|
+
/** Applies the position and rotation of the Rigidbody to the corresponding Transform component.
|
|
501
|
+
*/
|
|
502
|
+
public PublishTransform () : void
|
|
503
|
+
/** Returns the force that the Rigidbody has accumulated before the simulation step.
|
|
504
|
+
* @param $step The timestep of the next physics simulation.
|
|
505
|
+
* @returns Accumulated force expressed in ForceMode.Force.
|
|
506
|
+
*/
|
|
507
|
+
public GetAccumulatedForce ($step: number) : UnityEngine.Vector3
|
|
508
|
+
public GetAccumulatedForce () : UnityEngine.Vector3
|
|
509
|
+
/** Returns the torque that the Rigidbody has accumulated before the simulation step.
|
|
510
|
+
* @param $step The timestep of the next physics simulation.
|
|
511
|
+
* @returns Accumulated torque expressed in ForceMode.Force.
|
|
512
|
+
*/
|
|
513
|
+
public GetAccumulatedTorque ($step: number) : UnityEngine.Vector3
|
|
514
|
+
public GetAccumulatedTorque () : UnityEngine.Vector3
|
|
515
|
+
/** Adds a force to the Rigidbody.
|
|
516
|
+
* @param $force Force vector in world coordinates.
|
|
517
|
+
* @param $mode Type of force to apply.
|
|
518
|
+
*/
|
|
519
|
+
public AddForce ($force: UnityEngine.Vector3, $mode: UnityEngine.ForceMode) : void
|
|
520
|
+
/** Adds a force to the Rigidbody.
|
|
521
|
+
* @param $force Force vector in world coordinates.
|
|
522
|
+
* @param $mode Type of force to apply.
|
|
523
|
+
*/
|
|
524
|
+
public AddForce ($force: UnityEngine.Vector3) : void
|
|
525
|
+
/** Adds a force to the Rigidbody.
|
|
526
|
+
* @param $x Size of force along the world x-axis.
|
|
527
|
+
* @param $y Size of force along the world y-axis.
|
|
528
|
+
* @param $z Size of force along the world z-axis.
|
|
529
|
+
* @param $mode Type of force to apply.
|
|
530
|
+
*/
|
|
531
|
+
public AddForce ($x: number, $y: number, $z: number, $mode: UnityEngine.ForceMode) : void
|
|
532
|
+
/** Adds a force to the Rigidbody.
|
|
533
|
+
* @param $x Size of force along the world x-axis.
|
|
534
|
+
* @param $y Size of force along the world y-axis.
|
|
535
|
+
* @param $z Size of force along the world z-axis.
|
|
536
|
+
* @param $mode Type of force to apply.
|
|
537
|
+
*/
|
|
538
|
+
public AddForce ($x: number, $y: number, $z: number) : void
|
|
539
|
+
/** Adds a force to the rigidbody relative to its coordinate system.
|
|
540
|
+
* @param $force Force vector in local coordinates.
|
|
541
|
+
*/
|
|
542
|
+
public AddRelativeForce ($force: UnityEngine.Vector3, $mode: UnityEngine.ForceMode) : void
|
|
543
|
+
/** Adds a force to the rigidbody relative to its coordinate system.
|
|
544
|
+
* @param $force Force vector in local coordinates.
|
|
545
|
+
*/
|
|
546
|
+
public AddRelativeForce ($force: UnityEngine.Vector3) : void
|
|
547
|
+
/** Adds a force to the rigidbody relative to its coordinate system.
|
|
548
|
+
* @param $x Size of force along the local x-axis.
|
|
549
|
+
* @param $y Size of force along the local y-axis.
|
|
550
|
+
* @param $z Size of force along the local z-axis.
|
|
551
|
+
*/
|
|
552
|
+
public AddRelativeForce ($x: number, $y: number, $z: number, $mode: UnityEngine.ForceMode) : void
|
|
553
|
+
/** Adds a force to the rigidbody relative to its coordinate system.
|
|
554
|
+
* @param $x Size of force along the local x-axis.
|
|
555
|
+
* @param $y Size of force along the local y-axis.
|
|
556
|
+
* @param $z Size of force along the local z-axis.
|
|
557
|
+
*/
|
|
558
|
+
public AddRelativeForce ($x: number, $y: number, $z: number) : void
|
|
559
|
+
/** Adds a torque to the rigidbody.
|
|
560
|
+
* @param $torque Torque vector in world coordinates.
|
|
561
|
+
* @param $mode The type of torque to apply.
|
|
562
|
+
*/
|
|
563
|
+
public AddTorque ($torque: UnityEngine.Vector3, $mode: UnityEngine.ForceMode) : void
|
|
564
|
+
/** Adds a torque to the rigidbody.
|
|
565
|
+
* @param $torque Torque vector in world coordinates.
|
|
566
|
+
* @param $mode The type of torque to apply.
|
|
567
|
+
*/
|
|
568
|
+
public AddTorque ($torque: UnityEngine.Vector3) : void
|
|
569
|
+
/** Adds a torque to the rigidbody.
|
|
570
|
+
* @param $x Size of torque along the world x-axis.
|
|
571
|
+
* @param $y Size of torque along the world y-axis.
|
|
572
|
+
* @param $z Size of torque along the world z-axis.
|
|
573
|
+
* @param $mode The type of torque to apply.
|
|
574
|
+
*/
|
|
575
|
+
public AddTorque ($x: number, $y: number, $z: number, $mode: UnityEngine.ForceMode) : void
|
|
576
|
+
/** Adds a torque to the rigidbody.
|
|
577
|
+
* @param $x Size of torque along the world x-axis.
|
|
578
|
+
* @param $y Size of torque along the world y-axis.
|
|
579
|
+
* @param $z Size of torque along the world z-axis.
|
|
580
|
+
* @param $mode The type of torque to apply.
|
|
581
|
+
*/
|
|
582
|
+
public AddTorque ($x: number, $y: number, $z: number) : void
|
|
583
|
+
/** Adds a torque to the rigidbody relative to its coordinate system.
|
|
584
|
+
* @param $torque Torque vector in local coordinates.
|
|
585
|
+
*/
|
|
586
|
+
public AddRelativeTorque ($torque: UnityEngine.Vector3, $mode: UnityEngine.ForceMode) : void
|
|
587
|
+
/** Adds a torque to the rigidbody relative to its coordinate system.
|
|
588
|
+
* @param $torque Torque vector in local coordinates.
|
|
589
|
+
*/
|
|
590
|
+
public AddRelativeTorque ($torque: UnityEngine.Vector3) : void
|
|
591
|
+
/** Adds a torque to the rigidbody relative to its coordinate system.
|
|
592
|
+
* @param $x Size of torque along the local x-axis.
|
|
593
|
+
* @param $y Size of torque along the local y-axis.
|
|
594
|
+
* @param $z Size of torque along the local z-axis.
|
|
595
|
+
*/
|
|
596
|
+
public AddRelativeTorque ($x: number, $y: number, $z: number, $mode: UnityEngine.ForceMode) : void
|
|
597
|
+
/** Adds a torque to the rigidbody relative to its coordinate system.
|
|
598
|
+
* @param $x Size of torque along the local x-axis.
|
|
599
|
+
* @param $y Size of torque along the local y-axis.
|
|
600
|
+
* @param $z Size of torque along the local z-axis.
|
|
601
|
+
*/
|
|
602
|
+
public AddRelativeTorque ($x: number, $y: number, $z: number) : void
|
|
603
|
+
/** Applies force at position. As a result this will apply a torque and force on the object.
|
|
604
|
+
* @param $force Force vector in world coordinates.
|
|
605
|
+
* @param $position Position in world coordinates.
|
|
606
|
+
*/
|
|
607
|
+
public AddForceAtPosition ($force: UnityEngine.Vector3, $position: UnityEngine.Vector3, $mode: UnityEngine.ForceMode) : void
|
|
608
|
+
/** Applies force at position. As a result this will apply a torque and force on the object.
|
|
609
|
+
* @param $force Force vector in world coordinates.
|
|
610
|
+
* @param $position Position in world coordinates.
|
|
611
|
+
*/
|
|
612
|
+
public AddForceAtPosition ($force: UnityEngine.Vector3, $position: UnityEngine.Vector3) : void
|
|
613
|
+
/** Applies a force to a rigidbody that simulates explosion effects.
|
|
614
|
+
* @param $explosionForce The force of the explosion (which may be modified by distance).
|
|
615
|
+
* @param $explosionPosition The centre of the sphere within which the explosion has its effect.
|
|
616
|
+
* @param $explosionRadius The radius of the sphere within which the explosion has its effect.
|
|
617
|
+
* @param $upwardsModifier Adjustment to the apparent position of the explosion to make it seem to lift objects.
|
|
618
|
+
* @param $mode The method used to apply the force to its targets.
|
|
619
|
+
*/
|
|
620
|
+
public AddExplosionForce ($explosionForce: number, $explosionPosition: UnityEngine.Vector3, $explosionRadius: number, $upwardsModifier: number, $mode: UnityEngine.ForceMode) : void
|
|
621
|
+
/** Applies a force to a rigidbody that simulates explosion effects.
|
|
622
|
+
* @param $explosionForce The force of the explosion (which may be modified by distance).
|
|
623
|
+
* @param $explosionPosition The centre of the sphere within which the explosion has its effect.
|
|
624
|
+
* @param $explosionRadius The radius of the sphere within which the explosion has its effect.
|
|
625
|
+
* @param $upwardsModifier Adjustment to the apparent position of the explosion to make it seem to lift objects.
|
|
626
|
+
* @param $mode The method used to apply the force to its targets.
|
|
627
|
+
*/
|
|
628
|
+
public AddExplosionForce ($explosionForce: number, $explosionPosition: UnityEngine.Vector3, $explosionRadius: number, $upwardsModifier: number) : void
|
|
629
|
+
/** Applies a force to a rigidbody that simulates explosion effects.
|
|
630
|
+
* @param $explosionForce The force of the explosion (which may be modified by distance).
|
|
631
|
+
* @param $explosionPosition The centre of the sphere within which the explosion has its effect.
|
|
632
|
+
* @param $explosionRadius The radius of the sphere within which the explosion has its effect.
|
|
633
|
+
* @param $upwardsModifier Adjustment to the apparent position of the explosion to make it seem to lift objects.
|
|
634
|
+
* @param $mode The method used to apply the force to its targets.
|
|
635
|
+
*/
|
|
636
|
+
public AddExplosionForce ($explosionForce: number, $explosionPosition: UnityEngine.Vector3, $explosionRadius: number) : void
|
|
637
|
+
/** The closest point to the bounding box of the attached colliders.
|
|
638
|
+
*/
|
|
639
|
+
public ClosestPointOnBounds ($position: UnityEngine.Vector3) : UnityEngine.Vector3
|
|
640
|
+
/** Tests if a rigidbody would collide with anything, if it was moved through the Scene.
|
|
641
|
+
* @param $direction The direction into which to sweep the rigidbody.
|
|
642
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the collider was hit (Additional resources: RaycastHit).
|
|
643
|
+
* @param $maxDistance The length of the sweep.
|
|
644
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
645
|
+
* @returns True when the rigidbody sweep intersects any collider, otherwise false.
|
|
646
|
+
*/
|
|
647
|
+
public SweepTest ($direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
648
|
+
public SweepTest ($direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number) : boolean
|
|
649
|
+
public SweepTest ($direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>) : boolean
|
|
650
|
+
/** Like Rigidbody.SweepTest, but returns all hits.
|
|
651
|
+
* @param $direction The direction into which to sweep the rigidbody.
|
|
652
|
+
* @param $maxDistance The length of the sweep.
|
|
653
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
654
|
+
* @returns An array of all colliders hit in the sweep.
|
|
655
|
+
*/
|
|
656
|
+
public SweepTestAll ($direction: UnityEngine.Vector3, $maxDistance: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : System.Array$1<UnityEngine.RaycastHit>
|
|
657
|
+
public SweepTestAll ($direction: UnityEngine.Vector3, $maxDistance: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
658
|
+
public SweepTestAll ($direction: UnityEngine.Vector3) : System.Array$1<UnityEngine.RaycastHit>
|
|
659
|
+
public constructor ()
|
|
660
|
+
}
|
|
661
|
+
/** Describes how physics materials of the colliding objects are combined.
|
|
662
|
+
The friction force as well as the residual bounce impulse are applied symmertrically to both of the colliders in contact, so each pair of overlapping colliders must have a single set of friction and bouciness settings. However, one can set arbitrary physics materials to any colliders. For that particular reason, there is a mechanism that allows the combination of two different sets of properties that correspond to each of the colliders in contact into one set to be used in the solver.
|
|
663
|
+
Specifying Average, Maximum, Minimum or Multiply as the physics material combine mode, you directly set the function that is used to combine the settings corresponding to the two overlapping colliders into one set of settings that can be used to apply the material effect.
|
|
664
|
+
Note that there is a special case when the two overlapping colliders have physics materials with different combine modes set. In this particular case, the function that has the highest priority is used. The priority order is as follows: Average < Minimum < Multiply < Maximum. For example, if one material has Average set but the other one has Maximum, then the combine function to be used is Maximum, since it has higher priority.
|
|
665
|
+
*/
|
|
666
|
+
enum PhysicMaterialCombine
|
|
667
|
+
{ Average = 0, Minimum = 2, Multiply = 1, Maximum = 3 }
|
|
668
|
+
/** Describes a collision.
|
|
669
|
+
*/
|
|
670
|
+
class Collision extends System.Object
|
|
671
|
+
{
|
|
672
|
+
protected [__keep_incompatibility]: never;
|
|
673
|
+
/** The total impulse applied to this contact pair to resolve the collision.
|
|
674
|
+
*/
|
|
675
|
+
public get impulse(): UnityEngine.Vector3;
|
|
676
|
+
/** The relative linear velocity of the two colliding objects (Read Only).
|
|
677
|
+
*/
|
|
678
|
+
public get relativeVelocity(): UnityEngine.Vector3;
|
|
679
|
+
/** The Rigidbody we hit (Read Only). This is null if the object we hit is a collider with no rigidbody attached.
|
|
680
|
+
*/
|
|
681
|
+
public get rigidbody(): UnityEngine.Rigidbody;
|
|
682
|
+
/** The ArticulationBody of the collider that your GameObject collides with (Read Only).
|
|
683
|
+
*/
|
|
684
|
+
public get articulationBody(): UnityEngine.ArticulationBody;
|
|
685
|
+
/** The Rigidbody or ArticulationBody of the collider that your Component collides with (Read Only).
|
|
686
|
+
*/
|
|
687
|
+
public get body(): UnityEngine.Component;
|
|
688
|
+
/** The Collider we hit (Read Only).
|
|
689
|
+
*/
|
|
690
|
+
public get collider(): UnityEngine.Collider;
|
|
691
|
+
/** The Transform of the object we hit (Read Only).
|
|
692
|
+
*/
|
|
693
|
+
public get transform(): UnityEngine.Transform;
|
|
694
|
+
/** The GameObject whose collider you are colliding with. (Read Only).
|
|
695
|
+
*/
|
|
696
|
+
public get gameObject(): UnityEngine.GameObject;
|
|
697
|
+
/** Gets the number of contacts for this collision.
|
|
698
|
+
*/
|
|
699
|
+
public get contactCount(): number;
|
|
700
|
+
/** The contact points generated by the physics engine. You should avoid using this as it produces memory garbage. Use GetContact or GetContacts instead.
|
|
701
|
+
*/
|
|
702
|
+
public get contacts(): System.Array$1<UnityEngine.ContactPoint>;
|
|
703
|
+
/** Gets the contact point at the specified index.
|
|
704
|
+
* @param $index The index of the contact to retrieve.
|
|
705
|
+
* @returns The contact at the specified index.
|
|
706
|
+
*/
|
|
707
|
+
public GetContact ($index: number) : UnityEngine.ContactPoint
|
|
708
|
+
/** Retrieves all contact points for this collision.
|
|
709
|
+
* @param $contacts An array of ContactPoint used to receive the results.
|
|
710
|
+
* @returns Returns the number of contacts placed in the contacts array.
|
|
711
|
+
*/
|
|
712
|
+
public GetContacts ($contacts: System.Array$1<UnityEngine.ContactPoint>) : number
|
|
713
|
+
public GetContacts ($contacts: System.Collections.Generic.List$1<UnityEngine.ContactPoint>) : number
|
|
714
|
+
public constructor ()
|
|
715
|
+
}
|
|
716
|
+
/** A body that forms part of a Physics articulation.
|
|
717
|
+
*/
|
|
718
|
+
class ArticulationBody extends UnityEngine.Behaviour
|
|
719
|
+
{
|
|
720
|
+
protected [__keep_incompatibility]: never;
|
|
721
|
+
/** The type of joint connecting this body to its parent body.
|
|
722
|
+
*/
|
|
723
|
+
public get jointType(): UnityEngine.ArticulationJointType;
|
|
724
|
+
public set jointType(value: UnityEngine.ArticulationJointType);
|
|
725
|
+
/** Position of the anchor relative to this body.
|
|
726
|
+
*/
|
|
727
|
+
public get anchorPosition(): UnityEngine.Vector3;
|
|
728
|
+
public set anchorPosition(value: UnityEngine.Vector3);
|
|
729
|
+
/** Position of the anchor relative to this body's parent.
|
|
730
|
+
*/
|
|
731
|
+
public get parentAnchorPosition(): UnityEngine.Vector3;
|
|
732
|
+
public set parentAnchorPosition(value: UnityEngine.Vector3);
|
|
733
|
+
/** Rotation of the anchor relative to this body.
|
|
734
|
+
*/
|
|
735
|
+
public get anchorRotation(): UnityEngine.Quaternion;
|
|
736
|
+
public set anchorRotation(value: UnityEngine.Quaternion);
|
|
737
|
+
/** Rotation of the anchor relative to this body's parent.
|
|
738
|
+
*/
|
|
739
|
+
public get parentAnchorRotation(): UnityEngine.Quaternion;
|
|
740
|
+
public set parentAnchorRotation(value: UnityEngine.Quaternion);
|
|
741
|
+
/** Indicates whether this body is the root body of the articulation (Read Only).
|
|
742
|
+
*/
|
|
743
|
+
public get isRoot(): boolean;
|
|
744
|
+
/** Whether the parent anchor should be computed automatically or not.
|
|
745
|
+
*/
|
|
746
|
+
public get matchAnchors(): boolean;
|
|
747
|
+
public set matchAnchors(value: boolean);
|
|
748
|
+
/** The type of lock along X axis of movement.
|
|
749
|
+
*/
|
|
750
|
+
public get linearLockX(): UnityEngine.ArticulationDofLock;
|
|
751
|
+
public set linearLockX(value: UnityEngine.ArticulationDofLock);
|
|
752
|
+
/** The type of lock along Y axis of movement.
|
|
753
|
+
*/
|
|
754
|
+
public get linearLockY(): UnityEngine.ArticulationDofLock;
|
|
755
|
+
public set linearLockY(value: UnityEngine.ArticulationDofLock);
|
|
756
|
+
/** The type of lock along Z axis of movement.
|
|
757
|
+
*/
|
|
758
|
+
public get linearLockZ(): UnityEngine.ArticulationDofLock;
|
|
759
|
+
public set linearLockZ(value: UnityEngine.ArticulationDofLock);
|
|
760
|
+
/** The magnitude of the conical swing angle relative to Y axis.
|
|
761
|
+
*/
|
|
762
|
+
public get swingYLock(): UnityEngine.ArticulationDofLock;
|
|
763
|
+
public set swingYLock(value: UnityEngine.ArticulationDofLock);
|
|
764
|
+
/** The magnitude of the conical swing angle relative to Z axis.
|
|
765
|
+
*/
|
|
766
|
+
public get swingZLock(): UnityEngine.ArticulationDofLock;
|
|
767
|
+
public set swingZLock(value: UnityEngine.ArticulationDofLock);
|
|
768
|
+
/** The type of lock for twist movement.
|
|
769
|
+
*/
|
|
770
|
+
public get twistLock(): UnityEngine.ArticulationDofLock;
|
|
771
|
+
public set twistLock(value: UnityEngine.ArticulationDofLock);
|
|
772
|
+
/** The properties of drive along or around X.
|
|
773
|
+
*/
|
|
774
|
+
public get xDrive(): UnityEngine.ArticulationDrive;
|
|
775
|
+
public set xDrive(value: UnityEngine.ArticulationDrive);
|
|
776
|
+
/** The properties of drive along or around Y.
|
|
777
|
+
*/
|
|
778
|
+
public get yDrive(): UnityEngine.ArticulationDrive;
|
|
779
|
+
public set yDrive(value: UnityEngine.ArticulationDrive);
|
|
780
|
+
/** The properties of drive along or around Z.
|
|
781
|
+
*/
|
|
782
|
+
public get zDrive(): UnityEngine.ArticulationDrive;
|
|
783
|
+
public set zDrive(value: UnityEngine.ArticulationDrive);
|
|
784
|
+
/** Allows you to specify that this body is not movable.
|
|
785
|
+
*/
|
|
786
|
+
public get immovable(): boolean;
|
|
787
|
+
public set immovable(value: boolean);
|
|
788
|
+
/** Controls whether gravity affects this articulation body.
|
|
789
|
+
*/
|
|
790
|
+
public get useGravity(): boolean;
|
|
791
|
+
public set useGravity(value: boolean);
|
|
792
|
+
/** Damping factor that affects how this body resists linear motion.
|
|
793
|
+
*/
|
|
794
|
+
public get linearDamping(): number;
|
|
795
|
+
public set linearDamping(value: number);
|
|
796
|
+
/** Damping factor that affects how this body resists rotations.
|
|
797
|
+
*/
|
|
798
|
+
public get angularDamping(): number;
|
|
799
|
+
public set angularDamping(value: number);
|
|
800
|
+
/** Allows you to specify the amount of friction that is applied as a result of the parent body moving relative to this body.
|
|
801
|
+
*/
|
|
802
|
+
public get jointFriction(): number;
|
|
803
|
+
public set jointFriction(value: number);
|
|
804
|
+
/** The additional layers that all Colliders attached to this ArticulationBody should exclude when deciding if the Collider can come into contact with another Collider.
|
|
805
|
+
*/
|
|
806
|
+
public get excludeLayers(): UnityEngine.LayerMask;
|
|
807
|
+
public set excludeLayers(value: UnityEngine.LayerMask);
|
|
808
|
+
/** The additional layers that all Colliders attached to this ArticulationBody should include when deciding if a the Collider can come into contact with another Collider.
|
|
809
|
+
*/
|
|
810
|
+
public get includeLayers(): UnityEngine.LayerMask;
|
|
811
|
+
public set includeLayers(value: UnityEngine.LayerMask);
|
|
812
|
+
/** Linear velocity of the body defined in world space.
|
|
813
|
+
*/
|
|
814
|
+
public get velocity(): UnityEngine.Vector3;
|
|
815
|
+
public set velocity(value: UnityEngine.Vector3);
|
|
816
|
+
/** The angular velocity of the body defined in world space.
|
|
817
|
+
*/
|
|
818
|
+
public get angularVelocity(): UnityEngine.Vector3;
|
|
819
|
+
public set angularVelocity(value: UnityEngine.Vector3);
|
|
820
|
+
/** The mass of this articulation body.
|
|
821
|
+
*/
|
|
822
|
+
public get mass(): number;
|
|
823
|
+
public set mass(value: number);
|
|
824
|
+
/** Whether or not to calculate the center of mass automatically.
|
|
825
|
+
*/
|
|
826
|
+
public get automaticCenterOfMass(): boolean;
|
|
827
|
+
public set automaticCenterOfMass(value: boolean);
|
|
828
|
+
/** The center of mass of the body defined in local space.
|
|
829
|
+
*/
|
|
830
|
+
public get centerOfMass(): UnityEngine.Vector3;
|
|
831
|
+
public set centerOfMass(value: UnityEngine.Vector3);
|
|
832
|
+
/** The center of mass of the body defined in world space (Read Only).
|
|
833
|
+
*/
|
|
834
|
+
public get worldCenterOfMass(): UnityEngine.Vector3;
|
|
835
|
+
/** Whether or not to calculate the inertia tensor automatically.
|
|
836
|
+
*/
|
|
837
|
+
public get automaticInertiaTensor(): boolean;
|
|
838
|
+
public set automaticInertiaTensor(value: boolean);
|
|
839
|
+
/** The inertia tensor of this body.
|
|
840
|
+
*/
|
|
841
|
+
public get inertiaTensor(): UnityEngine.Vector3;
|
|
842
|
+
public set inertiaTensor(value: UnityEngine.Vector3);
|
|
843
|
+
/** The rotation of the inertia tensor.
|
|
844
|
+
*/
|
|
845
|
+
public get inertiaTensorRotation(): UnityEngine.Quaternion;
|
|
846
|
+
public set inertiaTensorRotation(value: UnityEngine.Quaternion);
|
|
847
|
+
/** The mass-normalized energy threshold, below which objects start going to sleep.
|
|
848
|
+
*/
|
|
849
|
+
public get sleepThreshold(): number;
|
|
850
|
+
public set sleepThreshold(value: number);
|
|
851
|
+
/** The solverIterations determines how accurately articulation body joints and collision contacts are resolved.
|
|
852
|
+
*/
|
|
853
|
+
public get solverIterations(): number;
|
|
854
|
+
public set solverIterations(value: number);
|
|
855
|
+
/** The solverVelocityIterations affects how accurately articulation body joints and collision contacts are resolved during bounce.
|
|
856
|
+
*/
|
|
857
|
+
public get solverVelocityIterations(): number;
|
|
858
|
+
public set solverVelocityIterations(value: number);
|
|
859
|
+
/** The maximum angular velocity of the articulation body measured in radians per second.
|
|
860
|
+
*/
|
|
861
|
+
public get maxAngularVelocity(): number;
|
|
862
|
+
public set maxAngularVelocity(value: number);
|
|
863
|
+
/** The maximum linear velocity of the articulation body measured in meters per second.
|
|
864
|
+
*/
|
|
865
|
+
public get maxLinearVelocity(): number;
|
|
866
|
+
public set maxLinearVelocity(value: number);
|
|
867
|
+
/** The maximum joint velocity of the articulation body joint in reduced coordinates.
|
|
868
|
+
*/
|
|
869
|
+
public get maxJointVelocity(): number;
|
|
870
|
+
public set maxJointVelocity(value: number);
|
|
871
|
+
/** The maximum velocity of an articulation body when moving out of penetrating state.
|
|
872
|
+
*/
|
|
873
|
+
public get maxDepenetrationVelocity(): number;
|
|
874
|
+
public set maxDepenetrationVelocity(value: number);
|
|
875
|
+
/** The joint position in reduced coordinates.
|
|
876
|
+
*/
|
|
877
|
+
public get jointPosition(): UnityEngine.ArticulationReducedSpace;
|
|
878
|
+
public set jointPosition(value: UnityEngine.ArticulationReducedSpace);
|
|
879
|
+
/** The joint velocity in reduced coordinates.
|
|
880
|
+
*/
|
|
881
|
+
public get jointVelocity(): UnityEngine.ArticulationReducedSpace;
|
|
882
|
+
public set jointVelocity(value: UnityEngine.ArticulationReducedSpace);
|
|
883
|
+
/** The joint acceleration in reduced coordinates.
|
|
884
|
+
*/
|
|
885
|
+
public get jointAcceleration(): UnityEngine.ArticulationReducedSpace;
|
|
886
|
+
public set jointAcceleration(value: UnityEngine.ArticulationReducedSpace);
|
|
887
|
+
/** The joint force in reduced coordinates.
|
|
888
|
+
*/
|
|
889
|
+
public get jointForce(): UnityEngine.ArticulationReducedSpace;
|
|
890
|
+
public set jointForce(value: UnityEngine.ArticulationReducedSpace);
|
|
891
|
+
/** The drive force in reduced coordinates.
|
|
892
|
+
*/
|
|
893
|
+
public get driveForce(): UnityEngine.ArticulationReducedSpace;
|
|
894
|
+
/** The amount of degrees of freedom of a body.
|
|
895
|
+
*/
|
|
896
|
+
public get dofCount(): number;
|
|
897
|
+
/** The index of the body in the hierarchy of articulation bodies.
|
|
898
|
+
*/
|
|
899
|
+
public get index(): number;
|
|
900
|
+
/** The ArticulationBody's collision detection mode.
|
|
901
|
+
*/
|
|
902
|
+
public get collisionDetectionMode(): UnityEngine.CollisionDetectionMode;
|
|
903
|
+
public set collisionDetectionMode(value: UnityEngine.CollisionDetectionMode);
|
|
904
|
+
/** Returns the force that the ArticulationBody has accumulated before the simulation step.
|
|
905
|
+
* @param $step The timestep of the next physics simulation.
|
|
906
|
+
* @returns Accumulated force expressed in ForceMode.Force.
|
|
907
|
+
*/
|
|
908
|
+
public GetAccumulatedForce ($step: number) : UnityEngine.Vector3
|
|
909
|
+
public GetAccumulatedForce () : UnityEngine.Vector3
|
|
910
|
+
/** Returns the torque that the ArticulationBody has accumulated before the simulation step.
|
|
911
|
+
* @param $step The timestep of the next physics simulation.
|
|
912
|
+
* @returns Accumulated torque expressed in ForceMode.Force.
|
|
913
|
+
*/
|
|
914
|
+
public GetAccumulatedTorque ($step: number) : UnityEngine.Vector3
|
|
915
|
+
public GetAccumulatedTorque () : UnityEngine.Vector3
|
|
916
|
+
/** Applies a force to the ArticulationBody.
|
|
917
|
+
* @param $force The force vector to apply.
|
|
918
|
+
* @param $mode The type of force to apply.
|
|
919
|
+
*/
|
|
920
|
+
public AddForce ($force: UnityEngine.Vector3, $mode: UnityEngine.ForceMode) : void
|
|
921
|
+
/** Applies a force to the ArticulationBody.
|
|
922
|
+
* @param $force The force vector to apply.
|
|
923
|
+
* @param $mode The type of force to apply.
|
|
924
|
+
*/
|
|
925
|
+
public AddForce ($force: UnityEngine.Vector3) : void
|
|
926
|
+
/** Applies a force to the Articulation Body, relative to its local coordinate system.
|
|
927
|
+
* @param $force The force vector in local coordinates.
|
|
928
|
+
* @param $mode The type of force to apply.
|
|
929
|
+
*/
|
|
930
|
+
public AddRelativeForce ($force: UnityEngine.Vector3, $mode: UnityEngine.ForceMode) : void
|
|
931
|
+
/** Applies a force to the Articulation Body, relative to its local coordinate system.
|
|
932
|
+
* @param $force The force vector in local coordinates.
|
|
933
|
+
* @param $mode The type of force to apply.
|
|
934
|
+
*/
|
|
935
|
+
public AddRelativeForce ($force: UnityEngine.Vector3) : void
|
|
936
|
+
/** Add torque to the articulation body.
|
|
937
|
+
* @param $torque The torque to apply.
|
|
938
|
+
* @param $mode The type of torque to apply.
|
|
939
|
+
*/
|
|
940
|
+
public AddTorque ($torque: UnityEngine.Vector3, $mode: UnityEngine.ForceMode) : void
|
|
941
|
+
/** Add torque to the articulation body.
|
|
942
|
+
* @param $torque The torque to apply.
|
|
943
|
+
* @param $mode The type of torque to apply.
|
|
944
|
+
*/
|
|
945
|
+
public AddTorque ($torque: UnityEngine.Vector3) : void
|
|
946
|
+
/** Applies a torque to the articulation body, relative to its local coordinate system.
|
|
947
|
+
* @param $torque The torque vector in local coordinates.
|
|
948
|
+
* @param $mode The type of torque to apply.
|
|
949
|
+
*/
|
|
950
|
+
public AddRelativeTorque ($torque: UnityEngine.Vector3, $mode: UnityEngine.ForceMode) : void
|
|
951
|
+
/** Applies a torque to the articulation body, relative to its local coordinate system.
|
|
952
|
+
* @param $torque The torque vector in local coordinates.
|
|
953
|
+
* @param $mode The type of torque to apply.
|
|
954
|
+
*/
|
|
955
|
+
public AddRelativeTorque ($torque: UnityEngine.Vector3) : void
|
|
956
|
+
/** Applies a force at a specific position, resulting in applying a torque and force on the object.
|
|
957
|
+
* @param $force The force vector in world coordinates.
|
|
958
|
+
* @param $position A position in world coordinates.
|
|
959
|
+
* @param $mode The type of force to apply.
|
|
960
|
+
*/
|
|
961
|
+
public AddForceAtPosition ($force: UnityEngine.Vector3, $position: UnityEngine.Vector3, $mode: UnityEngine.ForceMode) : void
|
|
962
|
+
/** Applies a force at a specific position, resulting in applying a torque and force on the object.
|
|
963
|
+
* @param $force The force vector in world coordinates.
|
|
964
|
+
* @param $position A position in world coordinates.
|
|
965
|
+
* @param $mode The type of force to apply.
|
|
966
|
+
*/
|
|
967
|
+
public AddForceAtPosition ($force: UnityEngine.Vector3, $position: UnityEngine.Vector3) : void
|
|
968
|
+
/** Resets the center of mass of the articulation body.
|
|
969
|
+
*/
|
|
970
|
+
public ResetCenterOfMass () : void
|
|
971
|
+
/** Resets the inertia tensor value and rotation.
|
|
972
|
+
*/
|
|
973
|
+
public ResetInertiaTensor () : void
|
|
974
|
+
/** Forces an articulation body to sleep.
|
|
975
|
+
*/
|
|
976
|
+
public Sleep () : void
|
|
977
|
+
/** Indicates whether the articulation body is sleeping.
|
|
978
|
+
*/
|
|
979
|
+
public IsSleeping () : boolean
|
|
980
|
+
/** Forces an articulation body to wake up.
|
|
981
|
+
*/
|
|
982
|
+
public WakeUp () : void
|
|
983
|
+
/** Teleport the root body of the articulation to a new pose.
|
|
984
|
+
* @param $position The new position of the root articulation body.
|
|
985
|
+
* @param $rotation The new orientation of the root articulation body.
|
|
986
|
+
*/
|
|
987
|
+
public TeleportRoot ($position: UnityEngine.Vector3, $rotation: UnityEngine.Quaternion) : void
|
|
988
|
+
/** Return the point on the articulation body that is closest to a given one.
|
|
989
|
+
* @param $point The point of interest.
|
|
990
|
+
* @returns The point on the surfaces of all Colliders attached to this articulation body that is closest to the given one.
|
|
991
|
+
*/
|
|
992
|
+
public GetClosestPoint ($point: UnityEngine.Vector3) : UnityEngine.Vector3
|
|
993
|
+
/** The velocity relative to the articulation body at the point relativePoint.
|
|
994
|
+
*/
|
|
995
|
+
public GetRelativePointVelocity ($relativePoint: UnityEngine.Vector3) : UnityEngine.Vector3
|
|
996
|
+
/** Gets the velocity of the articulation body at the specified worldPoint in global space.
|
|
997
|
+
*/
|
|
998
|
+
public GetPointVelocity ($worldPoint: UnityEngine.Vector3) : UnityEngine.Vector3
|
|
999
|
+
/** Calculates and writes dense Jacobian matrix of the articulation body hierarchy to the supplied struct.
|
|
1000
|
+
* @param $jacobian Supplied struct to read back and store Jacobian matrix values.
|
|
1001
|
+
* @returns Number of elements in Jacobian matrix.
|
|
1002
|
+
*/
|
|
1003
|
+
public GetDenseJacobian ($jacobian: $Ref<UnityEngine.ArticulationJacobian>) : number
|
|
1004
|
+
public GetJointPositions ($positions: System.Collections.Generic.List$1<number>) : number
|
|
1005
|
+
public SetJointPositions ($positions: System.Collections.Generic.List$1<number>) : void
|
|
1006
|
+
public GetJointVelocities ($velocities: System.Collections.Generic.List$1<number>) : number
|
|
1007
|
+
public SetJointVelocities ($velocities: System.Collections.Generic.List$1<number>) : void
|
|
1008
|
+
public GetJointAccelerations ($accelerations: System.Collections.Generic.List$1<number>) : number
|
|
1009
|
+
public GetJointForces ($forces: System.Collections.Generic.List$1<number>) : number
|
|
1010
|
+
public SetJointForces ($forces: System.Collections.Generic.List$1<number>) : void
|
|
1011
|
+
/** Returns the forces required for the body to reach the provided acceleration in reduced space.
|
|
1012
|
+
* @param $acceleration The desired acceleration in reduced space.
|
|
1013
|
+
* @returns The forces needed for the body to reach the desired acceleration in reduced space.
|
|
1014
|
+
*/
|
|
1015
|
+
public GetJointForcesForAcceleration ($acceleration: UnityEngine.ArticulationReducedSpace) : UnityEngine.ArticulationReducedSpace
|
|
1016
|
+
public GetDriveForces ($forces: System.Collections.Generic.List$1<number>) : number
|
|
1017
|
+
public GetJointGravityForces ($forces: System.Collections.Generic.List$1<number>) : number
|
|
1018
|
+
public GetJointCoriolisCentrifugalForces ($forces: System.Collections.Generic.List$1<number>) : number
|
|
1019
|
+
public GetJointExternalForces ($forces: System.Collections.Generic.List$1<number>, $step: number) : number
|
|
1020
|
+
public GetDriveTargets ($targets: System.Collections.Generic.List$1<number>) : number
|
|
1021
|
+
public SetDriveTargets ($targets: System.Collections.Generic.List$1<number>) : void
|
|
1022
|
+
public GetDriveTargetVelocities ($targetVelocities: System.Collections.Generic.List$1<number>) : number
|
|
1023
|
+
public SetDriveTargetVelocities ($targetVelocities: System.Collections.Generic.List$1<number>) : void
|
|
1024
|
+
public GetDofStartIndices ($dofStartIndices: System.Collections.Generic.List$1<number>) : number
|
|
1025
|
+
/** Sets the target value of the specified drive.
|
|
1026
|
+
* @param $axis The drive axis.
|
|
1027
|
+
* @param $value The value to set the target to.
|
|
1028
|
+
*/
|
|
1029
|
+
public SetDriveTarget ($axis: UnityEngine.ArticulationDriveAxis, $value: number) : void
|
|
1030
|
+
/** Sets the target velocity value of the specified drive.
|
|
1031
|
+
* @param $axis The drive axis.
|
|
1032
|
+
* @param $value The value to set the target velocity to.
|
|
1033
|
+
*/
|
|
1034
|
+
public SetDriveTargetVelocity ($axis: UnityEngine.ArticulationDriveAxis, $value: number) : void
|
|
1035
|
+
/** Sets the lower and upper limits of the drive.
|
|
1036
|
+
* @param $axis The drive axis.
|
|
1037
|
+
* @param $lower The lower limit of the drive.
|
|
1038
|
+
* @param $upper The upper limit of the drive.
|
|
1039
|
+
*/
|
|
1040
|
+
public SetDriveLimits ($axis: UnityEngine.ArticulationDriveAxis, $lower: number, $upper: number) : void
|
|
1041
|
+
/** Sets the stiffness value of the specified drive.
|
|
1042
|
+
* @param $axis The drive axis.
|
|
1043
|
+
* @param $value The value to set the stiffness to.
|
|
1044
|
+
*/
|
|
1045
|
+
public SetDriveStiffness ($axis: UnityEngine.ArticulationDriveAxis, $value: number) : void
|
|
1046
|
+
/** Sets the damping value of the specified drive.
|
|
1047
|
+
* @param $axis The drive axis.
|
|
1048
|
+
* @param $value The value to set the damping to.
|
|
1049
|
+
*/
|
|
1050
|
+
public SetDriveDamping ($axis: UnityEngine.ArticulationDriveAxis, $value: number) : void
|
|
1051
|
+
/** Sets the force limit of the specified drive.
|
|
1052
|
+
* @param $axis The drive axis.
|
|
1053
|
+
* @param $value The value to set the force limit to.
|
|
1054
|
+
*/
|
|
1055
|
+
public SetDriveForceLimit ($axis: UnityEngine.ArticulationDriveAxis, $value: number) : void
|
|
1056
|
+
/** Reads the position and rotation of the Articulation Body from the physics system and applies it to the corresponding Transform component.
|
|
1057
|
+
*/
|
|
1058
|
+
public PublishTransform () : void
|
|
1059
|
+
/** Snap the anchor to the closest contact between the connected bodies.
|
|
1060
|
+
*/
|
|
1061
|
+
public SnapAnchorToClosestContact () : void
|
|
1062
|
+
public constructor ()
|
|
1063
|
+
}
|
|
1064
|
+
/** Describes a contact point where the collision occurs.
|
|
1065
|
+
*/
|
|
1066
|
+
class ContactPoint extends System.ValueType
|
|
1067
|
+
{
|
|
1068
|
+
protected [__keep_incompatibility]: never;
|
|
1069
|
+
/** The point of contact.
|
|
1070
|
+
*/
|
|
1071
|
+
public get point(): UnityEngine.Vector3;
|
|
1072
|
+
/** Normal of the contact point.
|
|
1073
|
+
*/
|
|
1074
|
+
public get normal(): UnityEngine.Vector3;
|
|
1075
|
+
/** The impulse applied to this contact pair to resolve the collision.
|
|
1076
|
+
*/
|
|
1077
|
+
public get impulse(): UnityEngine.Vector3;
|
|
1078
|
+
/** The first collider in contact at the point.
|
|
1079
|
+
*/
|
|
1080
|
+
public get thisCollider(): UnityEngine.Collider;
|
|
1081
|
+
/** The other collider in contact at the point.
|
|
1082
|
+
*/
|
|
1083
|
+
public get otherCollider(): UnityEngine.Collider;
|
|
1084
|
+
/** The distance between the colliders at the contact point.
|
|
1085
|
+
*/
|
|
1086
|
+
public get separation(): number;
|
|
1087
|
+
}
|
|
1088
|
+
/** CollisionFlags is a bitmask returned by CharacterController.Move.
|
|
1089
|
+
*/
|
|
1090
|
+
enum CollisionFlags
|
|
1091
|
+
{ None = 0, Sides = 1, Above = 2, Below = 4, CollidedSides = 1, CollidedAbove = 2, CollidedBelow = 4 }
|
|
1092
|
+
/** Overrides the global Physics.queriesHitTriggers.
|
|
1093
|
+
*/
|
|
1094
|
+
enum QueryTriggerInteraction
|
|
1095
|
+
{ UseGlobal = 0, Ignore = 1, Collide = 2 }
|
|
1096
|
+
/** The collision detection mode constants used for Rigidbody.collisionDetectionMode.
|
|
1097
|
+
*/
|
|
1098
|
+
enum CollisionDetectionMode
|
|
1099
|
+
{ Discrete = 0, Continuous = 1, ContinuousDynamic = 2, ContinuousSpeculative = 3 }
|
|
1100
|
+
/** Constrains movement for a ConfigurableJoint along the 6 axes.
|
|
1101
|
+
*/
|
|
1102
|
+
enum ConfigurableJointMotion
|
|
1103
|
+
{ Locked = 0, Limited = 1, Free = 2 }
|
|
1104
|
+
/** Control ConfigurableJoint's rotation with either X & YZ or Slerp Drive.
|
|
1105
|
+
*/
|
|
1106
|
+
enum RotationDriveMode
|
|
1107
|
+
{ XYAndZ = 0, Slerp = 1 }
|
|
1108
|
+
/** The type of the joint that restricts movement of the two connected articulation bodies.
|
|
1109
|
+
*/
|
|
1110
|
+
enum ArticulationJointType
|
|
1111
|
+
{ FixedJoint = 0, PrismaticJoint = 1, RevoluteJoint = 2, SphericalJoint = 3 }
|
|
1112
|
+
/** The lock type applied to a particular degree of freedom of an articulation body.
|
|
1113
|
+
*/
|
|
1114
|
+
enum ArticulationDofLock
|
|
1115
|
+
{ LockedMotion = 0, LimitedMotion = 1, FreeMotion = 2 }
|
|
1116
|
+
/** The drive type applied to a particular drive of an ArticulationBody.
|
|
1117
|
+
*/
|
|
1118
|
+
enum ArticulationDriveType
|
|
1119
|
+
{ Force = 0, Acceleration = 1, Target = 2, Velocity = 3 }
|
|
1120
|
+
/** Drive applies forces and torques to the connected bodies.
|
|
1121
|
+
*/
|
|
1122
|
+
class ArticulationDrive extends System.ValueType
|
|
1123
|
+
{
|
|
1124
|
+
protected [__keep_incompatibility]: never;
|
|
1125
|
+
/** The lower limit of motion for a particular degree of freedom.
|
|
1126
|
+
*/
|
|
1127
|
+
public lowerLimit : number
|
|
1128
|
+
/** The upper limit of motion for a particular degree of freedom.
|
|
1129
|
+
*/
|
|
1130
|
+
public upperLimit : number
|
|
1131
|
+
/** The stiffness of the spring connected to this drive.
|
|
1132
|
+
*/
|
|
1133
|
+
public stiffness : number
|
|
1134
|
+
/** The damping of the spring attached to this drive.
|
|
1135
|
+
*/
|
|
1136
|
+
public damping : number
|
|
1137
|
+
/** The maximum force this drive can apply to a body.
|
|
1138
|
+
*/
|
|
1139
|
+
public forceLimit : number
|
|
1140
|
+
/** The target value the drive will try to reach.
|
|
1141
|
+
*/
|
|
1142
|
+
public target : number
|
|
1143
|
+
/** The velocity of the body this drive will try to reach.
|
|
1144
|
+
*/
|
|
1145
|
+
public targetVelocity : number
|
|
1146
|
+
/** Specifies which drive type to use for this drive.
|
|
1147
|
+
*/
|
|
1148
|
+
public driveType : UnityEngine.ArticulationDriveType
|
|
1149
|
+
}
|
|
1150
|
+
/** Coordinates in reduced space.
|
|
1151
|
+
*/
|
|
1152
|
+
class ArticulationReducedSpace extends System.ValueType
|
|
1153
|
+
{
|
|
1154
|
+
protected [__keep_incompatibility]: never;
|
|
1155
|
+
/** The number of degrees of freedom of a body.
|
|
1156
|
+
*/
|
|
1157
|
+
public dofCount : number
|
|
1158
|
+
public get_Item ($i: number) : number
|
|
1159
|
+
public set_Item ($i: number, $value: number) : void
|
|
1160
|
+
public constructor ($a: number)
|
|
1161
|
+
public constructor ($a: number, $b: number)
|
|
1162
|
+
public constructor ($a: number, $b: number, $c: number)
|
|
1163
|
+
}
|
|
1164
|
+
/** The floating point dense Jacobian matrix of the articulation body hierarchy.
|
|
1165
|
+
*/
|
|
1166
|
+
class ArticulationJacobian extends System.ValueType
|
|
1167
|
+
{
|
|
1168
|
+
protected [__keep_incompatibility]: never;
|
|
1169
|
+
/** Number of rows of the matrix is equal to the number of articulation bodies in hierarchy times 6: 3 rows of linearpositional DOF and 3 rows of angularrotational DOF for each body.
|
|
1170
|
+
*/
|
|
1171
|
+
public get rows(): number;
|
|
1172
|
+
public set rows(value: number);
|
|
1173
|
+
/** Number of columns of the matrix is equal to the total number of all joint degrees of freedom(DOF), plus 6 if ArticulationBody.immovable is false.
|
|
1174
|
+
*/
|
|
1175
|
+
public get columns(): number;
|
|
1176
|
+
public set columns(value: number);
|
|
1177
|
+
/** List of floats representing Jacobian matrix.
|
|
1178
|
+
*/
|
|
1179
|
+
public get elements(): System.Collections.Generic.List$1<number>;
|
|
1180
|
+
public set elements(value: System.Collections.Generic.List$1<number>);
|
|
1181
|
+
public constructor ($rows: number, $cols: number)
|
|
1182
|
+
}
|
|
1183
|
+
/** An axis of a drive of an ArticulationBody.
|
|
1184
|
+
*/
|
|
1185
|
+
enum ArticulationDriveAxis
|
|
1186
|
+
{ X = 0, Y = 1, Z = 2 }
|
|
1187
|
+
/** Global physics properties and helper methods.
|
|
1188
|
+
*/
|
|
1189
|
+
class Physics extends System.Object
|
|
1190
|
+
{
|
|
1191
|
+
protected [__keep_incompatibility]: never;
|
|
1192
|
+
/** Layer mask constant to select ignore raycast layer.
|
|
1193
|
+
*/
|
|
1194
|
+
public static IgnoreRaycastLayer : number
|
|
1195
|
+
/** Layer mask constant to select default raycast layers.
|
|
1196
|
+
*/
|
|
1197
|
+
public static DefaultRaycastLayers : number
|
|
1198
|
+
/** Layer mask constant to select all layers.
|
|
1199
|
+
*/
|
|
1200
|
+
public static AllLayers : number
|
|
1201
|
+
/** The gravity applied to all rigid bodies in the Scene.
|
|
1202
|
+
*/
|
|
1203
|
+
public static get gravity(): UnityEngine.Vector3;
|
|
1204
|
+
public static set gravity(value: UnityEngine.Vector3);
|
|
1205
|
+
/** The default contact offset of the newly created colliders.
|
|
1206
|
+
*/
|
|
1207
|
+
public static get defaultContactOffset(): number;
|
|
1208
|
+
public static set defaultContactOffset(value: number);
|
|
1209
|
+
/** The mass-normalized energy threshold, below which objects start going to sleep.
|
|
1210
|
+
*/
|
|
1211
|
+
public static get sleepThreshold(): number;
|
|
1212
|
+
public static set sleepThreshold(value: number);
|
|
1213
|
+
/** Specifies whether queries (raycasts, spherecasts, overlap tests, etc.) hit Triggers by default.
|
|
1214
|
+
*/
|
|
1215
|
+
public static get queriesHitTriggers(): boolean;
|
|
1216
|
+
public static set queriesHitTriggers(value: boolean);
|
|
1217
|
+
/** Whether physics queries should hit back-face triangles.
|
|
1218
|
+
*/
|
|
1219
|
+
public static get queriesHitBackfaces(): boolean;
|
|
1220
|
+
public static set queriesHitBackfaces(value: boolean);
|
|
1221
|
+
/** Two colliding objects with a relative velocity below this will not bounce (default 2). Must be positive.
|
|
1222
|
+
*/
|
|
1223
|
+
public static get bounceThreshold(): number;
|
|
1224
|
+
public static set bounceThreshold(value: number);
|
|
1225
|
+
/** The maximum default velocity needed to move a Rigidbody's collider out of another collider's surface penetration. Must be positive.
|
|
1226
|
+
*/
|
|
1227
|
+
public static get defaultMaxDepenetrationVelocity(): number;
|
|
1228
|
+
public static set defaultMaxDepenetrationVelocity(value: number);
|
|
1229
|
+
/** The defaultSolverIterations determines how accurately Rigidbody joints and collision contacts are resolved. (default 6). Must be positive.
|
|
1230
|
+
*/
|
|
1231
|
+
public static get defaultSolverIterations(): number;
|
|
1232
|
+
public static set defaultSolverIterations(value: number);
|
|
1233
|
+
/** The defaultSolverVelocityIterations affects how accurately the Rigidbody joints and collision contacts are resolved. (default 1). Must be positive.
|
|
1234
|
+
*/
|
|
1235
|
+
public static get defaultSolverVelocityIterations(): number;
|
|
1236
|
+
public static set defaultSolverVelocityIterations(value: number);
|
|
1237
|
+
/** Controls when Unity executes the physics simulation.
|
|
1238
|
+
*/
|
|
1239
|
+
public static get simulationMode(): UnityEngine.SimulationMode;
|
|
1240
|
+
public static set simulationMode(value: UnityEngine.SimulationMode);
|
|
1241
|
+
/** Default maximum angular speed of the dynamic Rigidbody, in radians (default 50).
|
|
1242
|
+
*/
|
|
1243
|
+
public static get defaultMaxAngularSpeed(): number;
|
|
1244
|
+
public static set defaultMaxAngularSpeed(value: number);
|
|
1245
|
+
/** Enables an improved patch friction mode that guarantees static and dynamic friction do not exceed analytical results.
|
|
1246
|
+
*/
|
|
1247
|
+
public static get improvedPatchFriction(): boolean;
|
|
1248
|
+
public static set improvedPatchFriction(value: boolean);
|
|
1249
|
+
/** Whether or not MonoBehaviour collision messages will be sent by the physics system.
|
|
1250
|
+
*/
|
|
1251
|
+
public static get invokeCollisionCallbacks(): boolean;
|
|
1252
|
+
public static set invokeCollisionCallbacks(value: boolean);
|
|
1253
|
+
/** The PhysicsScene automatically created when Unity starts.
|
|
1254
|
+
*/
|
|
1255
|
+
public static get defaultPhysicsScene(): UnityEngine.PhysicsScene;
|
|
1256
|
+
/** Whether or not to automatically sync transform changes with the physics system whenever a Transform component changes.
|
|
1257
|
+
*/
|
|
1258
|
+
public static get autoSyncTransforms(): boolean;
|
|
1259
|
+
public static set autoSyncTransforms(value: boolean);
|
|
1260
|
+
/** Determines whether the garbage collector should reuse only a single instance of a Collision type for all collision callbacks.
|
|
1261
|
+
*/
|
|
1262
|
+
public static get reuseCollisionCallbacks(): boolean;
|
|
1263
|
+
public static set reuseCollisionCallbacks(value: boolean);
|
|
1264
|
+
/** Sets the minimum separation distance for cloth inter-collision.
|
|
1265
|
+
*/
|
|
1266
|
+
public static get interCollisionDistance(): number;
|
|
1267
|
+
public static set interCollisionDistance(value: number);
|
|
1268
|
+
/** Sets the cloth inter-collision stiffness.
|
|
1269
|
+
*/
|
|
1270
|
+
public static get interCollisionStiffness(): number;
|
|
1271
|
+
public static set interCollisionStiffness(value: number);
|
|
1272
|
+
public static get interCollisionSettingsToggle(): boolean;
|
|
1273
|
+
public static set interCollisionSettingsToggle(value: boolean);
|
|
1274
|
+
/** Cloth Gravity setting.
|
|
1275
|
+
Set gravity for all cloth components.
|
|
1276
|
+
*/
|
|
1277
|
+
public static get clothGravity(): UnityEngine.Vector3;
|
|
1278
|
+
public static set clothGravity(value: UnityEngine.Vector3);
|
|
1279
|
+
public static add_ContactModifyEvent ($value: System.Action$2<UnityEngine.PhysicsScene, Unity.Collections.NativeArray$1<UnityEngine.ModifiableContactPair>>) : void
|
|
1280
|
+
public static remove_ContactModifyEvent ($value: System.Action$2<UnityEngine.PhysicsScene, Unity.Collections.NativeArray$1<UnityEngine.ModifiableContactPair>>) : void
|
|
1281
|
+
public static add_ContactModifyEventCCD ($value: System.Action$2<UnityEngine.PhysicsScene, Unity.Collections.NativeArray$1<UnityEngine.ModifiableContactPair>>) : void
|
|
1282
|
+
public static remove_ContactModifyEventCCD ($value: System.Action$2<UnityEngine.PhysicsScene, Unity.Collections.NativeArray$1<UnityEngine.ModifiableContactPair>>) : void
|
|
1283
|
+
/** Makes the collision detection system ignore all collisions between collider1 and collider2.
|
|
1284
|
+
* @param $collider1 Any collider.
|
|
1285
|
+
* @param $collider2 Another collider you want to have collider1 to start or stop ignoring collisions with.
|
|
1286
|
+
* @param $ignore Whether or not the collisions between the two colliders should be ignored or not.
|
|
1287
|
+
*/
|
|
1288
|
+
public static IgnoreCollision ($collider1: UnityEngine.Collider, $collider2: UnityEngine.Collider, $ignore: boolean) : void
|
|
1289
|
+
public static IgnoreCollision ($collider1: UnityEngine.Collider, $collider2: UnityEngine.Collider) : void
|
|
1290
|
+
/** Makes the collision detection system ignore all collisions between any collider in layer1 and any collider in layer2.
|
|
1291
|
+
Note that IgnoreLayerCollision will reset the trigger state of affected colliders, so you might receive OnTriggerExit and OnTriggerEnter messages in response to calling this.
|
|
1292
|
+
*/
|
|
1293
|
+
public static IgnoreLayerCollision ($layer1: number, $layer2: number, $ignore: boolean) : void
|
|
1294
|
+
public static IgnoreLayerCollision ($layer1: number, $layer2: number) : void
|
|
1295
|
+
/** Are collisions between layer1 and layer2 being ignored?
|
|
1296
|
+
*/
|
|
1297
|
+
public static GetIgnoreLayerCollision ($layer1: number, $layer2: number) : boolean
|
|
1298
|
+
/** Checks whether the collision detection system will ignore all collisionstriggers between collider1 and collider2/ or not.
|
|
1299
|
+
* @param $collider1 The first collider to compare to collider2.
|
|
1300
|
+
* @param $collider2 The second collider to compare to collider1.
|
|
1301
|
+
* @returns Whether the collision detection system will ignore all collisionstriggers between collider1 and collider2/ or not.
|
|
1302
|
+
*/
|
|
1303
|
+
public static GetIgnoreCollision ($collider1: UnityEngine.Collider, $collider2: UnityEngine.Collider) : boolean
|
|
1304
|
+
/** Casts a ray, from point origin, in direction direction, of length maxDistance, against all colliders in the Scene.
|
|
1305
|
+
* @param $origin The starting point of the ray in world coordinates.
|
|
1306
|
+
* @param $direction The direction of the ray.
|
|
1307
|
+
* @param $maxDistance The max distance the ray should check for collisions.
|
|
1308
|
+
* @param $layerMask A that is used to selectively ignore Colliders when casting a ray.
|
|
1309
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1310
|
+
* @returns Returns true if the ray intersects with a Collider, otherwise false.
|
|
1311
|
+
*/
|
|
1312
|
+
public static Raycast ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1313
|
+
public static Raycast ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $maxDistance: number, $layerMask: number) : boolean
|
|
1314
|
+
public static Raycast ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $maxDistance: number) : boolean
|
|
1315
|
+
public static Raycast ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3) : boolean
|
|
1316
|
+
/** Casts a ray against all colliders in the Scene and returns detailed information on what was hit.
|
|
1317
|
+
* @param $origin The starting point of the ray in world coordinates.
|
|
1318
|
+
* @param $direction The direction of the ray.
|
|
1319
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the closest collider was hit. (Additional resources: RaycastHit).
|
|
1320
|
+
* @param $maxDistance The max distance the ray should check for collisions.
|
|
1321
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1322
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1323
|
+
* @returns Returns true when the ray intersects any collider, otherwise false.
|
|
1324
|
+
*/
|
|
1325
|
+
public static Raycast ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1326
|
+
public static Raycast ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number) : boolean
|
|
1327
|
+
public static Raycast ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number) : boolean
|
|
1328
|
+
public static Raycast ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>) : boolean
|
|
1329
|
+
/** Same as above using ray.origin and ray.direction instead of origin and direction.
|
|
1330
|
+
* @param $ray The starting point and direction of the ray.
|
|
1331
|
+
* @param $maxDistance The max distance the ray should check for collisions.
|
|
1332
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1333
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1334
|
+
* @returns Returns true when the ray intersects any collider, otherwise false.
|
|
1335
|
+
*/
|
|
1336
|
+
public static Raycast ($ray: UnityEngine.Ray, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1337
|
+
public static Raycast ($ray: UnityEngine.Ray, $maxDistance: number, $layerMask: number) : boolean
|
|
1338
|
+
public static Raycast ($ray: UnityEngine.Ray, $maxDistance: number) : boolean
|
|
1339
|
+
public static Raycast ($ray: UnityEngine.Ray) : boolean
|
|
1340
|
+
/** Same as above using ray.origin and ray.direction instead of origin and direction.
|
|
1341
|
+
* @param $ray The starting point and direction of the ray.
|
|
1342
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the closest collider was hit. (Additional resources: RaycastHit).
|
|
1343
|
+
* @param $maxDistance The max distance the ray should check for collisions.
|
|
1344
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1345
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1346
|
+
* @returns Returns true when the ray intersects any collider, otherwise false.
|
|
1347
|
+
*/
|
|
1348
|
+
public static Raycast ($ray: UnityEngine.Ray, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1349
|
+
public static Raycast ($ray: UnityEngine.Ray, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number) : boolean
|
|
1350
|
+
public static Raycast ($ray: UnityEngine.Ray, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number) : boolean
|
|
1351
|
+
public static Raycast ($ray: UnityEngine.Ray, $hitInfo: $Ref<UnityEngine.RaycastHit>) : boolean
|
|
1352
|
+
/** Returns true if there is any collider intersecting the line between start and end.
|
|
1353
|
+
* @param $start Start point.
|
|
1354
|
+
* @param $end End point.
|
|
1355
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1356
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1357
|
+
*/
|
|
1358
|
+
public static Linecast ($start: UnityEngine.Vector3, $end: UnityEngine.Vector3, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1359
|
+
public static Linecast ($start: UnityEngine.Vector3, $end: UnityEngine.Vector3, $layerMask: number) : boolean
|
|
1360
|
+
public static Linecast ($start: UnityEngine.Vector3, $end: UnityEngine.Vector3) : boolean
|
|
1361
|
+
/** Returns true if there is any collider intersecting the line between start and end.
|
|
1362
|
+
* @param $start Start point.
|
|
1363
|
+
* @param $end End point.
|
|
1364
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1365
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1366
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the collider was hit. (Additional resources: RaycastHit).
|
|
1367
|
+
*/
|
|
1368
|
+
public static Linecast ($start: UnityEngine.Vector3, $end: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1369
|
+
public static Linecast ($start: UnityEngine.Vector3, $end: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $layerMask: number) : boolean
|
|
1370
|
+
public static Linecast ($start: UnityEngine.Vector3, $end: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>) : boolean
|
|
1371
|
+
/** Casts a capsule against all colliders in the Scene and returns detailed information on what was hit.
|
|
1372
|
+
* @param $point1 The center of the sphere at the start of the capsule.
|
|
1373
|
+
* @param $point2 The center of the sphere at the end of the capsule.
|
|
1374
|
+
* @param $radius The radius of the capsule.
|
|
1375
|
+
* @param $direction The direction into which to sweep the capsule.
|
|
1376
|
+
* @param $maxDistance The max length of the sweep.
|
|
1377
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1378
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1379
|
+
* @returns True when the capsule sweep intersects any collider, otherwise false.
|
|
1380
|
+
*/
|
|
1381
|
+
public static CapsuleCast ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1382
|
+
public static CapsuleCast ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $maxDistance: number, $layerMask: number) : boolean
|
|
1383
|
+
public static CapsuleCast ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $maxDistance: number) : boolean
|
|
1384
|
+
public static CapsuleCast ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3) : boolean
|
|
1385
|
+
/** * @param $point1 The center of the sphere at the start of the capsule.
|
|
1386
|
+
* @param $point2 The center of the sphere at the end of the capsule.
|
|
1387
|
+
* @param $radius The radius of the capsule.
|
|
1388
|
+
* @param $direction The direction into which to sweep the capsule.
|
|
1389
|
+
* @param $maxDistance The max length of the sweep.
|
|
1390
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the collider was hit. (Additional resources: RaycastHit).
|
|
1391
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1392
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1393
|
+
*/
|
|
1394
|
+
public static CapsuleCast ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1395
|
+
public static CapsuleCast ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number) : boolean
|
|
1396
|
+
public static CapsuleCast ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number) : boolean
|
|
1397
|
+
public static CapsuleCast ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>) : boolean
|
|
1398
|
+
/** Casts a sphere along a ray and returns detailed information on what was hit.
|
|
1399
|
+
* @param $origin The center of the sphere at the start of the sweep.
|
|
1400
|
+
* @param $radius The radius of the sphere.
|
|
1401
|
+
* @param $direction The direction into which to sweep the sphere.
|
|
1402
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the collider was hit. (Additional resources: RaycastHit).
|
|
1403
|
+
* @param $maxDistance The max length of the cast.
|
|
1404
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1405
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1406
|
+
* @returns True when the sphere sweep intersects any collider, otherwise false.
|
|
1407
|
+
*/
|
|
1408
|
+
public static SphereCast ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1409
|
+
public static SphereCast ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number) : boolean
|
|
1410
|
+
public static SphereCast ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number) : boolean
|
|
1411
|
+
public static SphereCast ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>) : boolean
|
|
1412
|
+
/** Casts a sphere along a ray and returns detailed information on what was hit.
|
|
1413
|
+
* @param $ray The starting point and direction of the ray into which the sphere sweep is cast.
|
|
1414
|
+
* @param $radius The radius of the sphere.
|
|
1415
|
+
* @param $maxDistance The max length of the cast.
|
|
1416
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1417
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1418
|
+
* @returns True when the sphere sweep intersects any collider, otherwise false.
|
|
1419
|
+
*/
|
|
1420
|
+
public static SphereCast ($ray: UnityEngine.Ray, $radius: number, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1421
|
+
public static SphereCast ($ray: UnityEngine.Ray, $radius: number, $maxDistance: number, $layerMask: number) : boolean
|
|
1422
|
+
public static SphereCast ($ray: UnityEngine.Ray, $radius: number, $maxDistance: number) : boolean
|
|
1423
|
+
public static SphereCast ($ray: UnityEngine.Ray, $radius: number) : boolean
|
|
1424
|
+
/** * @param $ray The starting point and direction of the ray into which the sphere sweep is cast.
|
|
1425
|
+
* @param $radius The radius of the sphere.
|
|
1426
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the collider was hit. (Additional resources: RaycastHit).
|
|
1427
|
+
* @param $maxDistance The max length of the cast.
|
|
1428
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1429
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1430
|
+
*/
|
|
1431
|
+
public static SphereCast ($ray: UnityEngine.Ray, $radius: number, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1432
|
+
public static SphereCast ($ray: UnityEngine.Ray, $radius: number, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number) : boolean
|
|
1433
|
+
public static SphereCast ($ray: UnityEngine.Ray, $radius: number, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance: number) : boolean
|
|
1434
|
+
public static SphereCast ($ray: UnityEngine.Ray, $radius: number, $hitInfo: $Ref<UnityEngine.RaycastHit>) : boolean
|
|
1435
|
+
/** Casts the box along a ray and returns detailed information on what was hit.
|
|
1436
|
+
* @param $center Center of the box.
|
|
1437
|
+
* @param $halfExtents Half the size of the box in each dimension.
|
|
1438
|
+
* @param $direction The direction in which to cast the box.
|
|
1439
|
+
* @param $orientation Rotation of the box.
|
|
1440
|
+
* @param $maxDistance The max length of the cast.
|
|
1441
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1442
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1443
|
+
* @returns True, if any intersections were found.
|
|
1444
|
+
*/
|
|
1445
|
+
public static BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1446
|
+
public static BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $maxDistance: number, $layerMask: number) : boolean
|
|
1447
|
+
public static BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $maxDistance: number) : boolean
|
|
1448
|
+
public static BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion) : boolean
|
|
1449
|
+
public static BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3) : boolean
|
|
1450
|
+
/** Casts the box along a ray and returns detailed information on what was hit.
|
|
1451
|
+
* @param $center Center of the box.
|
|
1452
|
+
* @param $halfExtents Half the size of the box in each dimension.
|
|
1453
|
+
* @param $direction The direction in which to cast the box.
|
|
1454
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the collider was hit. (Additional resources: RaycastHit).
|
|
1455
|
+
* @param $orientation Rotation of the box.
|
|
1456
|
+
* @param $maxDistance The max length of the cast.
|
|
1457
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1458
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1459
|
+
* @returns True, if any intersections were found.
|
|
1460
|
+
*/
|
|
1461
|
+
public static BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $orientation: UnityEngine.Quaternion, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1462
|
+
public static BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $orientation: UnityEngine.Quaternion, $maxDistance: number, $layerMask: number) : boolean
|
|
1463
|
+
public static BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $orientation: UnityEngine.Quaternion, $maxDistance: number) : boolean
|
|
1464
|
+
public static BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $orientation: UnityEngine.Quaternion) : boolean
|
|
1465
|
+
public static BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>) : boolean
|
|
1466
|
+
/** Additional resources: Raycast.
|
|
1467
|
+
* @param $origin The starting point of the ray in world coordinates.
|
|
1468
|
+
* @param $direction The direction of the ray.
|
|
1469
|
+
* @param $maxDistance The max distance the rayhit is allowed to be from the start of the ray.
|
|
1470
|
+
* @param $layermask A that is used to selectively ignore colliders when casting a ray.
|
|
1471
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1472
|
+
*/
|
|
1473
|
+
public static RaycastAll ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : System.Array$1<UnityEngine.RaycastHit>
|
|
1474
|
+
public static RaycastAll ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $maxDistance: number, $layerMask: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1475
|
+
public static RaycastAll ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $maxDistance: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1476
|
+
public static RaycastAll ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3) : System.Array$1<UnityEngine.RaycastHit>
|
|
1477
|
+
/** Casts a ray through the Scene and returns all hits. Note that order of the results is undefined.
|
|
1478
|
+
* @param $ray The starting point and direction of the ray.
|
|
1479
|
+
* @param $maxDistance The max distance the rayhit is allowed to be from the start of the ray.
|
|
1480
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1481
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1482
|
+
* @returns An array of RaycastHit objects. Note that the order of the results is undefined.
|
|
1483
|
+
*/
|
|
1484
|
+
public static RaycastAll ($ray: UnityEngine.Ray, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : System.Array$1<UnityEngine.RaycastHit>
|
|
1485
|
+
public static RaycastAll ($ray: UnityEngine.Ray, $maxDistance: number, $layerMask: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1486
|
+
public static RaycastAll ($ray: UnityEngine.Ray, $maxDistance: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1487
|
+
public static RaycastAll ($ray: UnityEngine.Ray) : System.Array$1<UnityEngine.RaycastHit>
|
|
1488
|
+
/** Cast a ray through the Scene and store the hits into the buffer.
|
|
1489
|
+
* @param $ray The starting point and direction of the ray.
|
|
1490
|
+
* @param $results The buffer to store the hits into.
|
|
1491
|
+
* @param $maxDistance The max distance the rayhit is allowed to be from the start of the ray.
|
|
1492
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1493
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1494
|
+
* @returns The amount of hits stored into the results buffer.
|
|
1495
|
+
*/
|
|
1496
|
+
public static RaycastNonAlloc ($ray: UnityEngine.Ray, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : number
|
|
1497
|
+
public static RaycastNonAlloc ($ray: UnityEngine.Ray, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number) : number
|
|
1498
|
+
public static RaycastNonAlloc ($ray: UnityEngine.Ray, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number) : number
|
|
1499
|
+
public static RaycastNonAlloc ($ray: UnityEngine.Ray, $results: System.Array$1<UnityEngine.RaycastHit>) : number
|
|
1500
|
+
/** Cast a ray through the Scene and store the hits into the buffer.
|
|
1501
|
+
* @param $origin The starting point and direction of the ray.
|
|
1502
|
+
* @param $results The buffer to store the hits into.
|
|
1503
|
+
* @param $direction The direction of the ray.
|
|
1504
|
+
* @param $maxDistance The max distance the rayhit is allowed to be from the start of the ray.
|
|
1505
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1506
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1507
|
+
* @returns The amount of hits stored into the results buffer.
|
|
1508
|
+
*/
|
|
1509
|
+
public static RaycastNonAlloc ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : number
|
|
1510
|
+
public static RaycastNonAlloc ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number) : number
|
|
1511
|
+
public static RaycastNonAlloc ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number) : number
|
|
1512
|
+
public static RaycastNonAlloc ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>) : number
|
|
1513
|
+
/** Like Physics.CapsuleCast, but this function will return all hits the capsule sweep intersects.
|
|
1514
|
+
* @param $point1 The center of the sphere at the start of the capsule.
|
|
1515
|
+
* @param $point2 The center of the sphere at the end of the capsule.
|
|
1516
|
+
* @param $radius The radius of the capsule.
|
|
1517
|
+
* @param $direction The direction into which to sweep the capsule.
|
|
1518
|
+
* @param $maxDistance The max length of the sweep.
|
|
1519
|
+
* @param $layermask A that is used to selectively ignore colliders when casting a capsule.
|
|
1520
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1521
|
+
* @returns An array of all colliders hit in the sweep.
|
|
1522
|
+
*/
|
|
1523
|
+
public static CapsuleCastAll ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : System.Array$1<UnityEngine.RaycastHit>
|
|
1524
|
+
public static CapsuleCastAll ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $maxDistance: number, $layerMask: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1525
|
+
public static CapsuleCastAll ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $maxDistance: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1526
|
+
public static CapsuleCastAll ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3) : System.Array$1<UnityEngine.RaycastHit>
|
|
1527
|
+
/** Like Physics.SphereCast, but this function will return all hits the sphere sweep intersects.
|
|
1528
|
+
* @param $origin The center of the sphere at the start of the sweep.
|
|
1529
|
+
* @param $radius The radius of the sphere.
|
|
1530
|
+
* @param $direction The direction in which to sweep the sphere.
|
|
1531
|
+
* @param $maxDistance The max length of the sweep.
|
|
1532
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a sphere.
|
|
1533
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1534
|
+
* @returns An array of all colliders hit in the sweep.
|
|
1535
|
+
*/
|
|
1536
|
+
public static SphereCastAll ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : System.Array$1<UnityEngine.RaycastHit>
|
|
1537
|
+
public static SphereCastAll ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $maxDistance: number, $layerMask: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1538
|
+
public static SphereCastAll ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $maxDistance: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1539
|
+
public static SphereCastAll ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3) : System.Array$1<UnityEngine.RaycastHit>
|
|
1540
|
+
/** Like Physics.SphereCast, but this function will return all hits the sphere sweep intersects.
|
|
1541
|
+
* @param $ray The starting point and direction of the ray into which the sphere sweep is cast.
|
|
1542
|
+
* @param $radius The radius of the sphere.
|
|
1543
|
+
* @param $maxDistance The max length of the sweep.
|
|
1544
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a sphere.
|
|
1545
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1546
|
+
*/
|
|
1547
|
+
public static SphereCastAll ($ray: UnityEngine.Ray, $radius: number, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : System.Array$1<UnityEngine.RaycastHit>
|
|
1548
|
+
public static SphereCastAll ($ray: UnityEngine.Ray, $radius: number, $maxDistance: number, $layerMask: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1549
|
+
public static SphereCastAll ($ray: UnityEngine.Ray, $radius: number, $maxDistance: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1550
|
+
public static SphereCastAll ($ray: UnityEngine.Ray, $radius: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1551
|
+
/** Check the given capsule against the physics world and return all overlapping colliders.
|
|
1552
|
+
* @param $point0 The center of the sphere at the start of the capsule.
|
|
1553
|
+
* @param $point1 The center of the sphere at the end of the capsule.
|
|
1554
|
+
* @param $radius The radius of the capsule.
|
|
1555
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1556
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1557
|
+
* @returns Colliders touching or inside the capsule.
|
|
1558
|
+
*/
|
|
1559
|
+
public static OverlapCapsule ($point0: UnityEngine.Vector3, $point1: UnityEngine.Vector3, $radius: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : System.Array$1<UnityEngine.Collider>
|
|
1560
|
+
public static OverlapCapsule ($point0: UnityEngine.Vector3, $point1: UnityEngine.Vector3, $radius: number, $layerMask: number) : System.Array$1<UnityEngine.Collider>
|
|
1561
|
+
public static OverlapCapsule ($point0: UnityEngine.Vector3, $point1: UnityEngine.Vector3, $radius: number) : System.Array$1<UnityEngine.Collider>
|
|
1562
|
+
/** Computes and stores colliders touching or inside the sphere.
|
|
1563
|
+
* @param $position Center of the sphere.
|
|
1564
|
+
* @param $radius Radius of the sphere.
|
|
1565
|
+
* @param $layerMask A defines which layers of colliders to include in the query.
|
|
1566
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1567
|
+
* @returns Returns an array with all colliders touching or inside the sphere.
|
|
1568
|
+
*/
|
|
1569
|
+
public static OverlapSphere ($position: UnityEngine.Vector3, $radius: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : System.Array$1<UnityEngine.Collider>
|
|
1570
|
+
public static OverlapSphere ($position: UnityEngine.Vector3, $radius: number, $layerMask: number) : System.Array$1<UnityEngine.Collider>
|
|
1571
|
+
public static OverlapSphere ($position: UnityEngine.Vector3, $radius: number) : System.Array$1<UnityEngine.Collider>
|
|
1572
|
+
/** Simulate physics in the Scene.
|
|
1573
|
+
* @param $step The time to advance physics by.
|
|
1574
|
+
*/
|
|
1575
|
+
public static Simulate ($step: number) : void
|
|
1576
|
+
/** Apply Transform changes to the physics engine.
|
|
1577
|
+
*/
|
|
1578
|
+
public static SyncTransforms () : void
|
|
1579
|
+
/** Compute the minimal translation required to separate the given colliders apart at specified poses.
|
|
1580
|
+
* @param $colliderA The first collider.
|
|
1581
|
+
* @param $positionA Position of the first collider.
|
|
1582
|
+
* @param $rotationA Rotation of the first collider.
|
|
1583
|
+
* @param $colliderB The second collider.
|
|
1584
|
+
* @param $positionB Position of the second collider.
|
|
1585
|
+
* @param $rotationB Rotation of the second collider.
|
|
1586
|
+
* @param $direction Direction along which the translation required to separate the colliders apart is minimal.
|
|
1587
|
+
* @param $distance The distance along direction that is required to separate the colliders apart.
|
|
1588
|
+
* @returns True, if the colliders overlap at the given poses.
|
|
1589
|
+
*/
|
|
1590
|
+
public static ComputePenetration ($colliderA: UnityEngine.Collider, $positionA: UnityEngine.Vector3, $rotationA: UnityEngine.Quaternion, $colliderB: UnityEngine.Collider, $positionB: UnityEngine.Vector3, $rotationB: UnityEngine.Quaternion, $direction: $Ref<UnityEngine.Vector3>, $distance: $Ref<number>) : boolean
|
|
1591
|
+
/** Returns a point on the given collider that is closest to the specified location.
|
|
1592
|
+
* @param $point Location you want to find the closest point to.
|
|
1593
|
+
* @param $collider The collider that you find the closest point on.
|
|
1594
|
+
* @param $position The position of the collider.
|
|
1595
|
+
* @param $rotation The rotation of the collider.
|
|
1596
|
+
* @returns The point on the collider that is closest to the specified location.
|
|
1597
|
+
*/
|
|
1598
|
+
public static ClosestPoint ($point: UnityEngine.Vector3, $collider: UnityEngine.Collider, $position: UnityEngine.Vector3, $rotation: UnityEngine.Quaternion) : UnityEngine.Vector3
|
|
1599
|
+
/** Computes and stores colliders touching or inside the sphere into the provided buffer.
|
|
1600
|
+
* @param $position Center of the sphere.
|
|
1601
|
+
* @param $radius Radius of the sphere.
|
|
1602
|
+
* @param $results The buffer to store the results into.
|
|
1603
|
+
* @param $layerMask A defines which layers of colliders to include in the query.
|
|
1604
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1605
|
+
* @returns Returns the amount of colliders stored into the results buffer.
|
|
1606
|
+
*/
|
|
1607
|
+
public static OverlapSphereNonAlloc ($position: UnityEngine.Vector3, $radius: number, $results: System.Array$1<UnityEngine.Collider>, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : number
|
|
1608
|
+
public static OverlapSphereNonAlloc ($position: UnityEngine.Vector3, $radius: number, $results: System.Array$1<UnityEngine.Collider>, $layerMask: number) : number
|
|
1609
|
+
public static OverlapSphereNonAlloc ($position: UnityEngine.Vector3, $radius: number, $results: System.Array$1<UnityEngine.Collider>) : number
|
|
1610
|
+
/** Returns true if there are any colliders overlapping the sphere defined by position and radius in world coordinates.
|
|
1611
|
+
* @param $position Center of the sphere.
|
|
1612
|
+
* @param $radius Radius of the sphere.
|
|
1613
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1614
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1615
|
+
*/
|
|
1616
|
+
public static CheckSphere ($position: UnityEngine.Vector3, $radius: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1617
|
+
public static CheckSphere ($position: UnityEngine.Vector3, $radius: number, $layerMask: number) : boolean
|
|
1618
|
+
public static CheckSphere ($position: UnityEngine.Vector3, $radius: number) : boolean
|
|
1619
|
+
/** Casts a capsule against all colliders in the Scene and returns detailed information on what was hit into the buffer.
|
|
1620
|
+
* @param $point1 The center of the sphere at the start of the capsule.
|
|
1621
|
+
* @param $point2 The center of the sphere at the end of the capsule.
|
|
1622
|
+
* @param $radius The radius of the capsule.
|
|
1623
|
+
* @param $direction The direction into which to sweep the capsule.
|
|
1624
|
+
* @param $results The buffer to store the hits into.
|
|
1625
|
+
* @param $maxDistance The max length of the sweep.
|
|
1626
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1627
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1628
|
+
* @returns The amount of hits stored into the buffer.
|
|
1629
|
+
*/
|
|
1630
|
+
public static CapsuleCastNonAlloc ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : number
|
|
1631
|
+
public static CapsuleCastNonAlloc ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number) : number
|
|
1632
|
+
public static CapsuleCastNonAlloc ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number) : number
|
|
1633
|
+
public static CapsuleCastNonAlloc ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>) : number
|
|
1634
|
+
/** Cast sphere along the direction and store the results into buffer.
|
|
1635
|
+
* @param $origin The center of the sphere at the start of the sweep.
|
|
1636
|
+
* @param $radius The radius of the sphere.
|
|
1637
|
+
* @param $direction The direction in which to sweep the sphere.
|
|
1638
|
+
* @param $results The buffer to save the hits into.
|
|
1639
|
+
* @param $maxDistance The max length of the sweep.
|
|
1640
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a sphere.
|
|
1641
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1642
|
+
* @returns The amount of hits stored into the results buffer.
|
|
1643
|
+
*/
|
|
1644
|
+
public static SphereCastNonAlloc ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : number
|
|
1645
|
+
public static SphereCastNonAlloc ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number) : number
|
|
1646
|
+
public static SphereCastNonAlloc ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number) : number
|
|
1647
|
+
public static SphereCastNonAlloc ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>) : number
|
|
1648
|
+
/** Cast sphere along the direction and store the results into buffer.
|
|
1649
|
+
* @param $ray The starting point and direction of the ray into which the sphere sweep is cast.
|
|
1650
|
+
* @param $radius The radius of the sphere.
|
|
1651
|
+
* @param $results The buffer to save the results to.
|
|
1652
|
+
* @param $maxDistance The max length of the sweep.
|
|
1653
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a sphere.
|
|
1654
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1655
|
+
* @returns The amount of hits stored into the results buffer.
|
|
1656
|
+
*/
|
|
1657
|
+
public static SphereCastNonAlloc ($ray: UnityEngine.Ray, $radius: number, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : number
|
|
1658
|
+
public static SphereCastNonAlloc ($ray: UnityEngine.Ray, $radius: number, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number, $layerMask: number) : number
|
|
1659
|
+
public static SphereCastNonAlloc ($ray: UnityEngine.Ray, $radius: number, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance: number) : number
|
|
1660
|
+
public static SphereCastNonAlloc ($ray: UnityEngine.Ray, $radius: number, $results: System.Array$1<UnityEngine.RaycastHit>) : number
|
|
1661
|
+
/** Checks if any colliders overlap a capsule-shaped volume in world space.
|
|
1662
|
+
* @param $start The center of the sphere at the start of the capsule.
|
|
1663
|
+
* @param $end The center of the sphere at the end of the capsule.
|
|
1664
|
+
* @param $radius The radius of the capsule.
|
|
1665
|
+
* @param $layermask A that is used to selectively ignore colliders when casting a capsule.
|
|
1666
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1667
|
+
*/
|
|
1668
|
+
public static CheckCapsule ($start: UnityEngine.Vector3, $end: UnityEngine.Vector3, $radius: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1669
|
+
public static CheckCapsule ($start: UnityEngine.Vector3, $end: UnityEngine.Vector3, $radius: number, $layerMask: number) : boolean
|
|
1670
|
+
public static CheckCapsule ($start: UnityEngine.Vector3, $end: UnityEngine.Vector3, $radius: number) : boolean
|
|
1671
|
+
/** Check whether the given box overlaps with other colliders or not.
|
|
1672
|
+
* @param $center Center of the box.
|
|
1673
|
+
* @param $halfExtents Half the size of the box in each dimension.
|
|
1674
|
+
* @param $orientation Rotation of the box.
|
|
1675
|
+
* @param $layermask A that is used to selectively ignore colliders when casting a ray.
|
|
1676
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1677
|
+
* @returns True, if the box overlaps with any colliders.
|
|
1678
|
+
*/
|
|
1679
|
+
public static CheckBox ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $layermask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1680
|
+
public static CheckBox ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $layerMask: number) : boolean
|
|
1681
|
+
public static CheckBox ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion) : boolean
|
|
1682
|
+
public static CheckBox ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3) : boolean
|
|
1683
|
+
/** Find all colliders touching or inside of the given box.
|
|
1684
|
+
* @param $center Center of the box.
|
|
1685
|
+
* @param $halfExtents Half of the size of the box in each dimension.
|
|
1686
|
+
* @param $orientation Rotation of the box.
|
|
1687
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1688
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1689
|
+
* @returns Colliders that overlap with the given box.
|
|
1690
|
+
*/
|
|
1691
|
+
public static OverlapBox ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : System.Array$1<UnityEngine.Collider>
|
|
1692
|
+
public static OverlapBox ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $layerMask: number) : System.Array$1<UnityEngine.Collider>
|
|
1693
|
+
public static OverlapBox ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion) : System.Array$1<UnityEngine.Collider>
|
|
1694
|
+
public static OverlapBox ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3) : System.Array$1<UnityEngine.Collider>
|
|
1695
|
+
/** Find all colliders touching or inside of the given box, and store them into the buffer.
|
|
1696
|
+
* @param $center Center of the box.
|
|
1697
|
+
* @param $halfExtents Half of the size of the box in each dimension.
|
|
1698
|
+
* @param $results The buffer to store the results in.
|
|
1699
|
+
* @param $orientation Rotation of the box.
|
|
1700
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1701
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1702
|
+
* @returns The amount of colliders stored in results.
|
|
1703
|
+
*/
|
|
1704
|
+
public static OverlapBoxNonAlloc ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.Collider>, $orientation: UnityEngine.Quaternion, $mask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : number
|
|
1705
|
+
public static OverlapBoxNonAlloc ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.Collider>, $orientation: UnityEngine.Quaternion, $mask: number) : number
|
|
1706
|
+
public static OverlapBoxNonAlloc ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.Collider>, $orientation: UnityEngine.Quaternion) : number
|
|
1707
|
+
public static OverlapBoxNonAlloc ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.Collider>) : number
|
|
1708
|
+
/** Cast the box along the direction, and store hits in the provided buffer.
|
|
1709
|
+
* @param $center Center of the box.
|
|
1710
|
+
* @param $halfExtents Half the size of the box in each dimension.
|
|
1711
|
+
* @param $direction The direction in which to cast the box.
|
|
1712
|
+
* @param $results The buffer to store the results in.
|
|
1713
|
+
* @param $orientation Rotation of the box.
|
|
1714
|
+
* @param $maxDistance The max length of the cast.
|
|
1715
|
+
* @param $layermask A that is used to selectively ignore colliders when casting a capsule.
|
|
1716
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1717
|
+
* @returns The amount of hits stored to the results buffer.
|
|
1718
|
+
*/
|
|
1719
|
+
public static BoxCastNonAlloc ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $orientation: UnityEngine.Quaternion, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : number
|
|
1720
|
+
public static BoxCastNonAlloc ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $orientation: UnityEngine.Quaternion) : number
|
|
1721
|
+
public static BoxCastNonAlloc ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $orientation: UnityEngine.Quaternion, $maxDistance: number) : number
|
|
1722
|
+
public static BoxCastNonAlloc ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $orientation: UnityEngine.Quaternion, $maxDistance: number, $layerMask: number) : number
|
|
1723
|
+
public static BoxCastNonAlloc ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>) : number
|
|
1724
|
+
/** Like Physics.BoxCast, but returns all hits.
|
|
1725
|
+
* @param $center Center of the box.
|
|
1726
|
+
* @param $halfExtents Half the size of the box in each dimension.
|
|
1727
|
+
* @param $direction The direction in which to cast the box.
|
|
1728
|
+
* @param $orientation Rotation of the box.
|
|
1729
|
+
* @param $maxDistance The max length of the cast.
|
|
1730
|
+
* @param $layermask A that is used to selectively ignore colliders when casting a capsule.
|
|
1731
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1732
|
+
* @returns All colliders that were hit.
|
|
1733
|
+
*/
|
|
1734
|
+
public static BoxCastAll ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $maxDistance: number, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : System.Array$1<UnityEngine.RaycastHit>
|
|
1735
|
+
public static BoxCastAll ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $maxDistance: number, $layerMask: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1736
|
+
public static BoxCastAll ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $maxDistance: number) : System.Array$1<UnityEngine.RaycastHit>
|
|
1737
|
+
public static BoxCastAll ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion) : System.Array$1<UnityEngine.RaycastHit>
|
|
1738
|
+
public static BoxCastAll ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3) : System.Array$1<UnityEngine.RaycastHit>
|
|
1739
|
+
/** Check the given capsule against the physics world and return all overlapping colliders in the user-provided buffer.
|
|
1740
|
+
* @param $point0 The center of the sphere at the start of the capsule.
|
|
1741
|
+
* @param $point1 The center of the sphere at the end of the capsule.
|
|
1742
|
+
* @param $radius The radius of the capsule.
|
|
1743
|
+
* @param $results The buffer to store the results into.
|
|
1744
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1745
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1746
|
+
* @returns The amount of entries written to the buffer.
|
|
1747
|
+
*/
|
|
1748
|
+
public static OverlapCapsuleNonAlloc ($point0: UnityEngine.Vector3, $point1: UnityEngine.Vector3, $radius: number, $results: System.Array$1<UnityEngine.Collider>, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : number
|
|
1749
|
+
public static OverlapCapsuleNonAlloc ($point0: UnityEngine.Vector3, $point1: UnityEngine.Vector3, $radius: number, $results: System.Array$1<UnityEngine.Collider>, $layerMask: number) : number
|
|
1750
|
+
public static OverlapCapsuleNonAlloc ($point0: UnityEngine.Vector3, $point1: UnityEngine.Vector3, $radius: number, $results: System.Array$1<UnityEngine.Collider>) : number
|
|
1751
|
+
/** Prepares the mesh for use with a MeshCollider.
|
|
1752
|
+
* @param $meshID The instance ID of the mesh to bake collision data from.
|
|
1753
|
+
* @param $convex A flag to indicate whether to bake convex geometry or not.
|
|
1754
|
+
* @param $cookingOptions The cooking options to use when you bake the mesh.
|
|
1755
|
+
*/
|
|
1756
|
+
public static BakeMesh ($meshID: number, $convex: boolean, $cookingOptions: UnityEngine.MeshColliderCookingOptions) : void
|
|
1757
|
+
/** Prepares the mesh for use with a MeshCollider and uses default cooking options.
|
|
1758
|
+
* @param $meshID The instance ID of the mesh to bake collision data from.
|
|
1759
|
+
* @param $convex A flag to indicate whether to bake convex geometry or not.
|
|
1760
|
+
*/
|
|
1761
|
+
public static BakeMesh ($meshID: number, $convex: boolean) : void
|
|
1762
|
+
public static add_ContactEvent ($value: UnityEngine.Physics.ContactEventDelegate) : void
|
|
1763
|
+
public static remove_ContactEvent ($value: UnityEngine.Physics.ContactEventDelegate) : void
|
|
1764
|
+
public constructor ()
|
|
1765
|
+
}
|
|
1766
|
+
/** Represents a single instance of a 3D physics Scene.
|
|
1767
|
+
*/
|
|
1768
|
+
class PhysicsScene extends System.ValueType implements System.IEquatable$1<UnityEngine.PhysicsScene>
|
|
1769
|
+
{
|
|
1770
|
+
protected [__keep_incompatibility]: never;
|
|
1771
|
+
public static op_Equality ($lhs: UnityEngine.PhysicsScene, $rhs: UnityEngine.PhysicsScene) : boolean
|
|
1772
|
+
public static op_Inequality ($lhs: UnityEngine.PhysicsScene, $rhs: UnityEngine.PhysicsScene) : boolean
|
|
1773
|
+
public Equals ($other: any) : boolean
|
|
1774
|
+
public Equals ($other: UnityEngine.PhysicsScene) : boolean
|
|
1775
|
+
/** Gets whether the physics Scene is valid or not.
|
|
1776
|
+
* @returns Is the physics scene valid?
|
|
1777
|
+
*/
|
|
1778
|
+
public IsValid () : boolean
|
|
1779
|
+
/** Gets whether the physics Scene is empty or not.
|
|
1780
|
+
* @returns Is the physics Scene is empty?
|
|
1781
|
+
*/
|
|
1782
|
+
public IsEmpty () : boolean
|
|
1783
|
+
/** Simulate physics associated with this PhysicsScene.
|
|
1784
|
+
* @param $step The time to advance physics by.
|
|
1785
|
+
* @returns Whether the simulation was run or not. Running the simulation during physics callbacks will always fail.
|
|
1786
|
+
*/
|
|
1787
|
+
public Simulate ($step: number) : void
|
|
1788
|
+
/** Runs specified physics simulation stages on this physics scene.
|
|
1789
|
+
* @param $step The time to advance physics by.
|
|
1790
|
+
* @param $stages An enum to specify which stages to run.
|
|
1791
|
+
* @param $options A flag enum to specify any additional simulation options.
|
|
1792
|
+
*/
|
|
1793
|
+
public RunSimulationStages ($step: number, $stages: UnityEngine.SimulationStage, $options?: UnityEngine.SimulationOption) : void
|
|
1794
|
+
/** Interpolates Rigidbodies in this PhysicsScene.
|
|
1795
|
+
*/
|
|
1796
|
+
public InterpolateBodies () : void
|
|
1797
|
+
/** Resets the Transform positions of interpolated and extrapolated Rigidbodies in this PhysicsScene to Rigidbody.position and Transform rotations to Rigidbody.rotation.
|
|
1798
|
+
*/
|
|
1799
|
+
public ResetInterpolationPoses () : void
|
|
1800
|
+
/** Casts a ray, from point origin, in direction direction, of length maxDistance, against all colliders in the Scene.
|
|
1801
|
+
* @param $origin The starting point of the ray in world coordinates.
|
|
1802
|
+
* @param $direction The direction of the ray.
|
|
1803
|
+
* @param $maxDistance The max distance the ray should check for collisions.
|
|
1804
|
+
* @param $layerMask A that is used to selectively ignore Colliders when casting a ray.
|
|
1805
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1806
|
+
* @returns True if the ray intersects with a Collider, otherwise false.
|
|
1807
|
+
*/
|
|
1808
|
+
public Raycast ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $maxDistance?: number, $layerMask?: number, $queryTriggerInteraction?: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1809
|
+
/** Casts a ray, from point origin, in direction direction, of length maxDistance, against all colliders in the Scene.
|
|
1810
|
+
* @param $origin The starting point of the ray in world coordinates.
|
|
1811
|
+
* @param $direction The direction of the ray.
|
|
1812
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the collider was hit. (Additional resources: RaycastHit).
|
|
1813
|
+
* @param $maxDistance The max distance the ray should check for collisions.
|
|
1814
|
+
* @param $layerMask A that is used to selectively ignore Colliders when casting a ray.
|
|
1815
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1816
|
+
* @returns True if the ray intersects with a Collider, otherwise false.
|
|
1817
|
+
*/
|
|
1818
|
+
public Raycast ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance?: number, $layerMask?: number, $queryTriggerInteraction?: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1819
|
+
/** Casts a ray, from point origin, in direction direction, of length maxDistance, against all colliders in the Scene.
|
|
1820
|
+
* @param $origin The starting point and direction of the ray.
|
|
1821
|
+
* @param $direction The direction of the ray.
|
|
1822
|
+
* @param $raycastHits The buffer to store the hits into.
|
|
1823
|
+
* @param $maxDistance The max distance the rayhit is allowed to be from the start of the ray.
|
|
1824
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1825
|
+
* @param $queryTriggerInteraction The amount of hits stored into the results buffer.
|
|
1826
|
+
* @returns True if the ray intersects with a Collider, otherwise false.
|
|
1827
|
+
*/
|
|
1828
|
+
public Raycast ($origin: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $raycastHits: System.Array$1<UnityEngine.RaycastHit>, $maxDistance?: number, $layerMask?: number, $queryTriggerInteraction?: UnityEngine.QueryTriggerInteraction) : number
|
|
1829
|
+
/** Casts a capsule against all colliders in this physics scene and returns detailed information on what was hit.
|
|
1830
|
+
* @param $point1 The center of the sphere at the start of the capsule.
|
|
1831
|
+
* @param $point2 The center of the sphere at the end of the capsule.
|
|
1832
|
+
* @param $radius The radius of the capsule.
|
|
1833
|
+
* @param $direction The direction into which to sweep the capsule.
|
|
1834
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the collider was hit. (Additional resources: RaycastHit).
|
|
1835
|
+
* @param $maxDistance The max length of the sweep.
|
|
1836
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1837
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1838
|
+
* @returns True when the capsule sweep intersects any collider, otherwise false.
|
|
1839
|
+
*/
|
|
1840
|
+
public CapsuleCast ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance?: number, $layerMask?: number, $queryTriggerInteraction?: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1841
|
+
/** Casts a capsule against all colliders in this physics scene and returns detailed information on what was hit.
|
|
1842
|
+
* @param $point1 The center of the sphere at the start of the capsule.
|
|
1843
|
+
* @param $point2 The center of the sphere at the end of the capsule.
|
|
1844
|
+
* @param $radius The radius of the capsule.
|
|
1845
|
+
* @param $direction The direction into which to sweep the capsule.
|
|
1846
|
+
* @param $results The buffer to store the results in.
|
|
1847
|
+
* @param $maxDistance The max length of the sweep.
|
|
1848
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1849
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1850
|
+
* @returns The amount of hits stored to the results buffer.
|
|
1851
|
+
*/
|
|
1852
|
+
public CapsuleCast ($point1: UnityEngine.Vector3, $point2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance?: number, $layerMask?: number, $queryTriggerInteraction?: UnityEngine.QueryTriggerInteraction) : number
|
|
1853
|
+
/** Check the given capsule against the physics world and return all overlapping colliders in the user-provided buffer.
|
|
1854
|
+
* @param $point0 The center of the sphere at the start of the capsule.
|
|
1855
|
+
* @param $point1 The center of the sphere at the end of the capsule.
|
|
1856
|
+
* @param $radius The radius of the capsule.
|
|
1857
|
+
* @param $results The buffer to store the results into.
|
|
1858
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1859
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1860
|
+
* @returns The amount of entries written to the buffer.
|
|
1861
|
+
*/
|
|
1862
|
+
public OverlapCapsule ($point0: UnityEngine.Vector3, $point1: UnityEngine.Vector3, $radius: number, $results: System.Array$1<UnityEngine.Collider>, $layerMask?: number, $queryTriggerInteraction?: UnityEngine.QueryTriggerInteraction) : number
|
|
1863
|
+
/** Casts a sphere along a ray and returns detailed information on what was hit.
|
|
1864
|
+
* @param $origin The center of the sphere at the start of the sweep.
|
|
1865
|
+
* @param $radius The radius of the sphere.
|
|
1866
|
+
* @param $direction The direction into which to sweep the sphere.
|
|
1867
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the collider was hit. (Additional resources: RaycastHit).
|
|
1868
|
+
* @param $maxDistance The max length of the cast.
|
|
1869
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1870
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1871
|
+
* @returns True when the sphere sweep intersects any collider, otherwise false.
|
|
1872
|
+
*/
|
|
1873
|
+
public SphereCast ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $maxDistance?: number, $layerMask?: number, $queryTriggerInteraction?: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1874
|
+
/** Cast sphere along the direction and store the results into buffer.
|
|
1875
|
+
* @param $origin The center of the sphere at the start of the sweep.
|
|
1876
|
+
* @param $radius The radius of the sphere.
|
|
1877
|
+
* @param $direction The direction into which to sweep the sphere.
|
|
1878
|
+
* @param $results The buffer to save the results to.
|
|
1879
|
+
* @param $maxDistance The max length of the cast.
|
|
1880
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1881
|
+
* @param $queryTriggerInteraction A that is used to selectively ignore colliders when casting a capsule.
|
|
1882
|
+
* @returns The amount of hits stored into the results buffer.
|
|
1883
|
+
*/
|
|
1884
|
+
public SphereCast ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $maxDistance?: number, $layerMask?: number, $queryTriggerInteraction?: UnityEngine.QueryTriggerInteraction) : number
|
|
1885
|
+
/** Computes and stores colliders touching or inside the sphere into the provided buffer.
|
|
1886
|
+
* @param $position Center of the sphere.
|
|
1887
|
+
* @param $radius Radius of the sphere.
|
|
1888
|
+
* @param $results The buffer to store the results into.
|
|
1889
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1890
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1891
|
+
* @returns The amount of colliders stored into the results buffer.
|
|
1892
|
+
*/
|
|
1893
|
+
public OverlapSphere ($position: UnityEngine.Vector3, $radius: number, $results: System.Array$1<UnityEngine.Collider>, $layerMask: number, $queryTriggerInteraction: UnityEngine.QueryTriggerInteraction) : number
|
|
1894
|
+
/** Casts the box along a ray and returns detailed information on what was hit.
|
|
1895
|
+
* @param $center Center of the box.
|
|
1896
|
+
* @param $halfExtents Half the size of the box in each dimension.
|
|
1897
|
+
* @param $direction The direction in which to cast the box.
|
|
1898
|
+
* @param $hitInfo If true is returned, hitInfo will contain more information about where the collider was hit. (Additional resources: RaycastHit).
|
|
1899
|
+
* @param $orientation Rotation of the box.
|
|
1900
|
+
* @param $maxDistance The max length of the cast.
|
|
1901
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1902
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1903
|
+
* @returns True, if any intersections were found.
|
|
1904
|
+
*/
|
|
1905
|
+
public BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>, $orientation: UnityEngine.Quaternion, $maxDistance?: number, $layerMask?: number, $queryTriggerInteraction?: UnityEngine.QueryTriggerInteraction) : boolean
|
|
1906
|
+
public BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $hitInfo: $Ref<UnityEngine.RaycastHit>) : boolean
|
|
1907
|
+
/** Find all colliders touching or inside of the given box, and store them into the buffer.
|
|
1908
|
+
* @param $center Center of the box.
|
|
1909
|
+
* @param $halfExtents Half of the size of the box in each dimension.
|
|
1910
|
+
* @param $results The buffer to store the results in.
|
|
1911
|
+
* @param $orientation Rotation of the box.
|
|
1912
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a ray.
|
|
1913
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1914
|
+
* @returns The amount of colliders stored in results.
|
|
1915
|
+
*/
|
|
1916
|
+
public OverlapBox ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.Collider>, $orientation: UnityEngine.Quaternion, $layerMask?: number, $queryTriggerInteraction?: UnityEngine.QueryTriggerInteraction) : number
|
|
1917
|
+
public OverlapBox ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.Collider>) : number
|
|
1918
|
+
/** Casts the box along a ray and returns detailed information on what was hit.
|
|
1919
|
+
* @param $center Center of the box.
|
|
1920
|
+
* @param $halfExtents Half the size of the box in each dimension.
|
|
1921
|
+
* @param $direction The direction in which to cast the box.
|
|
1922
|
+
* @param $results The buffer to store the results in.
|
|
1923
|
+
* @param $orientation Rotation of the box.
|
|
1924
|
+
* @param $maxDistance The max length of the cast.
|
|
1925
|
+
* @param $layerMask A that is used to selectively ignore colliders when casting a capsule.
|
|
1926
|
+
* @param $queryTriggerInteraction Specifies whether this query should hit Triggers.
|
|
1927
|
+
* @returns The amount of hits stored to the results buffer.
|
|
1928
|
+
*/
|
|
1929
|
+
public BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>, $orientation: UnityEngine.Quaternion, $maxDistance?: number, $layerMask?: number, $queryTriggerInteraction?: UnityEngine.QueryTriggerInteraction) : number
|
|
1930
|
+
public BoxCast ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $results: System.Array$1<UnityEngine.RaycastHit>) : number
|
|
1931
|
+
}
|
|
1932
|
+
/** A light-weight proxy that allows to access the contact buffers directly.
|
|
1933
|
+
*/
|
|
1934
|
+
class ModifiableContactPair extends System.ValueType
|
|
1935
|
+
{
|
|
1936
|
+
protected [__keep_incompatibility]: never;
|
|
1937
|
+
/** World-space rotation of the first collider in this contact pair as seen by the solver.
|
|
1938
|
+
*/
|
|
1939
|
+
public rotation : UnityEngine.Quaternion
|
|
1940
|
+
/** World-space position of the first collider in this contact pair as seen by the solver.
|
|
1941
|
+
*/
|
|
1942
|
+
public position : UnityEngine.Vector3
|
|
1943
|
+
/** World-space rotation of the second collider in this contact pair as seen by the solver.
|
|
1944
|
+
*/
|
|
1945
|
+
public otherRotation : UnityEngine.Quaternion
|
|
1946
|
+
/** World-space position of the second collider in this contact pair as seen by the solver.
|
|
1947
|
+
*/
|
|
1948
|
+
public otherPosition : UnityEngine.Vector3
|
|
1949
|
+
/** Instance ID of the first Collider in this contact pair.
|
|
1950
|
+
*/
|
|
1951
|
+
public get colliderInstanceID(): number;
|
|
1952
|
+
/** Instance ID of the second collider in this contact pair.
|
|
1953
|
+
*/
|
|
1954
|
+
public get otherColliderInstanceID(): number;
|
|
1955
|
+
/** Instance ID of the first body in this contact pair.
|
|
1956
|
+
*/
|
|
1957
|
+
public get bodyInstanceID(): number;
|
|
1958
|
+
/** Instance ID of the second body in this contact pair.
|
|
1959
|
+
*/
|
|
1960
|
+
public get otherBodyInstanceID(): number;
|
|
1961
|
+
/** Linear velocity of the first body in the contact pair.
|
|
1962
|
+
*/
|
|
1963
|
+
public get bodyVelocity(): UnityEngine.Vector3;
|
|
1964
|
+
/** Angular velocity of the first body in the contact pair.
|
|
1965
|
+
*/
|
|
1966
|
+
public get bodyAngularVelocity(): UnityEngine.Vector3;
|
|
1967
|
+
/** Linear velocity of the second body in the contact pair.
|
|
1968
|
+
*/
|
|
1969
|
+
public get otherBodyVelocity(): UnityEngine.Vector3;
|
|
1970
|
+
/** Angular velocity of the second body in the contact pair.
|
|
1971
|
+
*/
|
|
1972
|
+
public get otherBodyAngularVelocity(): UnityEngine.Vector3;
|
|
1973
|
+
/** The amount of the contact points generated for this contact pair.
|
|
1974
|
+
*/
|
|
1975
|
+
public get contactCount(): number;
|
|
1976
|
+
/** Mass-related properties of this contact pair, such as the mass ratio.
|
|
1977
|
+
*/
|
|
1978
|
+
public get massProperties(): UnityEngine.ModifiableMassProperties;
|
|
1979
|
+
public set massProperties(value: UnityEngine.ModifiableMassProperties);
|
|
1980
|
+
/** Get the location of a particular contact point in this contact pair.
|
|
1981
|
+
* @param $i Index of the contact point.
|
|
1982
|
+
* @returns The location of a contact point.
|
|
1983
|
+
*/
|
|
1984
|
+
public GetPoint ($i: number) : UnityEngine.Vector3
|
|
1985
|
+
/** Set the location of a particular contact point in this contact pair.
|
|
1986
|
+
* @param $i Index of the contact point.
|
|
1987
|
+
* @param $v The location of a contact point.
|
|
1988
|
+
*/
|
|
1989
|
+
public SetPoint ($i: number, $v: UnityEngine.Vector3) : void
|
|
1990
|
+
/** Get the normal at a particular contact point in this contact pair.
|
|
1991
|
+
* @param $i Index of the contact point.
|
|
1992
|
+
* @returns Normal at the contact point.
|
|
1993
|
+
*/
|
|
1994
|
+
public GetNormal ($i: number) : UnityEngine.Vector3
|
|
1995
|
+
/** Set the normal at a particular contact point in this contact pair.
|
|
1996
|
+
* @param $i Index of the contact point.
|
|
1997
|
+
* @param $normal Normal at the contact point.
|
|
1998
|
+
*/
|
|
1999
|
+
public SetNormal ($i: number, $normal: UnityEngine.Vector3) : void
|
|
2000
|
+
/** Get the separation value at a particular contact point in this contact pair.
|
|
2001
|
+
* @param $i Index of the contact point.
|
|
2002
|
+
* @returns The separation at a contact point.
|
|
2003
|
+
*/
|
|
2004
|
+
public GetSeparation ($i: number) : number
|
|
2005
|
+
/** Set the separation value at a particular contact point in this contact pair.
|
|
2006
|
+
* @param $i Index of the contact point.
|
|
2007
|
+
* @param $separation The separation at a contact point.
|
|
2008
|
+
*/
|
|
2009
|
+
public SetSeparation ($i: number, $separation: number) : void
|
|
2010
|
+
/** Get the target velocity the solver should aim reaching at a particular contact point in this contact pair.
|
|
2011
|
+
* @param $i Index of the contact point.
|
|
2012
|
+
* @returns The target velocity at a contact point.
|
|
2013
|
+
*/
|
|
2014
|
+
public GetTargetVelocity ($i: number) : UnityEngine.Vector3
|
|
2015
|
+
/** Set the target velocity the solver should aim reaching at a particular contact point in this contact pair.
|
|
2016
|
+
* @param $i Index of the contact point.
|
|
2017
|
+
* @param $velocity The target velocity at a contact point.
|
|
2018
|
+
*/
|
|
2019
|
+
public SetTargetVelocity ($i: number, $velocity: UnityEngine.Vector3) : void
|
|
2020
|
+
/** Get the restitution value for the specified contact point in this contact pair.
|
|
2021
|
+
* @param $i Index of the contact point.
|
|
2022
|
+
* @returns Bounciness value for the specified contact point.
|
|
2023
|
+
*/
|
|
2024
|
+
public GetBounciness ($i: number) : number
|
|
2025
|
+
/** Set the restitution value for the specified contact point in this contact pair.
|
|
2026
|
+
* @param $i Index of the contact point.
|
|
2027
|
+
* @param $bounciness Bounciness value for the specified contact point.
|
|
2028
|
+
*/
|
|
2029
|
+
public SetBounciness ($i: number, $bounciness: number) : void
|
|
2030
|
+
/** Get the static friction coefficient at a particular point of the contact pair.
|
|
2031
|
+
* @param $i Index of the contact point.
|
|
2032
|
+
* @returns The static friction coefficient at a contact point.
|
|
2033
|
+
*/
|
|
2034
|
+
public GetStaticFriction ($i: number) : number
|
|
2035
|
+
/** Set the static friction coefficient at a particular point of the contact pair.
|
|
2036
|
+
* @param $i Index of the contact point.
|
|
2037
|
+
* @param $staticFriction The static friction coefficient at a contact point.
|
|
2038
|
+
*/
|
|
2039
|
+
public SetStaticFriction ($i: number, $staticFriction: number) : void
|
|
2040
|
+
/** Get the value of the dynamic friction for a specified contact point in this contact pair.
|
|
2041
|
+
* @param $i Index of the contact point.
|
|
2042
|
+
* @returns Dynamic friction coefficient.
|
|
2043
|
+
*/
|
|
2044
|
+
public GetDynamicFriction ($i: number) : number
|
|
2045
|
+
/** Set the value of the dynamic friction for a specified contact point in this contact pair.
|
|
2046
|
+
* @param $i Index of the contact point.
|
|
2047
|
+
* @param $dynamicFriction Dynamic friction coefficient.
|
|
2048
|
+
*/
|
|
2049
|
+
public SetDynamicFriction ($i: number, $dynamicFriction: number) : void
|
|
2050
|
+
/** Get the maximum impulse that the solver can apply at a particular contact point in this contact pair.
|
|
2051
|
+
* @param $i Index of the contact point.
|
|
2052
|
+
* @returns The maximum impulse that can be applied.
|
|
2053
|
+
*/
|
|
2054
|
+
public GetMaxImpulse ($i: number) : number
|
|
2055
|
+
/** Set the maximum impulse that the solver can apply at a particular contact point in this contact pair.
|
|
2056
|
+
* @param $i Index of the contact point.
|
|
2057
|
+
* @param $value The maximum impulse that can be applied.
|
|
2058
|
+
*/
|
|
2059
|
+
public SetMaxImpulse ($i: number, $value: number) : void
|
|
2060
|
+
/** Ignore the specified contact point in this contact pair.
|
|
2061
|
+
* @param $i Index of the contact point.
|
|
2062
|
+
*/
|
|
2063
|
+
public IgnoreContact ($i: number) : void
|
|
2064
|
+
/** Get the index of a face a particular contact point belongs to in this contact pair. Use this with Mesh.triangles.
|
|
2065
|
+
* @param $i Index of the contact point.
|
|
2066
|
+
* @returns Index of a face this contact point belongs to.
|
|
2067
|
+
*/
|
|
2068
|
+
public GetFaceIndex ($i: number) : number
|
|
2069
|
+
}
|
|
2070
|
+
/** A selection of modes that control when Unity executes the physics simulation.
|
|
2071
|
+
*/
|
|
2072
|
+
enum SimulationMode
|
|
2073
|
+
{ FixedUpdate = 0, Update = 1, Script = 2 }
|
|
2074
|
+
/** Structure used to get information back from a raycast.
|
|
2075
|
+
*/
|
|
2076
|
+
class RaycastHit extends System.ValueType
|
|
2077
|
+
{
|
|
2078
|
+
protected [__keep_incompatibility]: never;
|
|
2079
|
+
/** The Collider that was hit.
|
|
2080
|
+
*/
|
|
2081
|
+
public get collider(): UnityEngine.Collider;
|
|
2082
|
+
/** Instance ID of the Collider that was hit.
|
|
2083
|
+
*/
|
|
2084
|
+
public get colliderInstanceID(): number;
|
|
2085
|
+
/** The impact point in world space where the ray hit the collider.
|
|
2086
|
+
*/
|
|
2087
|
+
public get point(): UnityEngine.Vector3;
|
|
2088
|
+
public set point(value: UnityEngine.Vector3);
|
|
2089
|
+
/** The normal of the surface the ray hit.
|
|
2090
|
+
*/
|
|
2091
|
+
public get normal(): UnityEngine.Vector3;
|
|
2092
|
+
public set normal(value: UnityEngine.Vector3);
|
|
2093
|
+
/** The barycentric coordinate of the triangle we hit.
|
|
2094
|
+
*/
|
|
2095
|
+
public get barycentricCoordinate(): UnityEngine.Vector3;
|
|
2096
|
+
public set barycentricCoordinate(value: UnityEngine.Vector3);
|
|
2097
|
+
/** The distance from the ray's origin to the impact point.
|
|
2098
|
+
*/
|
|
2099
|
+
public get distance(): number;
|
|
2100
|
+
public set distance(value: number);
|
|
2101
|
+
/** The index of the triangle that was hit.
|
|
2102
|
+
*/
|
|
2103
|
+
public get triangleIndex(): number;
|
|
2104
|
+
/** The uv texture coordinate at the collision location.
|
|
2105
|
+
*/
|
|
2106
|
+
public get textureCoord(): UnityEngine.Vector2;
|
|
2107
|
+
/** The secondary uv texture coordinate at the impact point.
|
|
2108
|
+
*/
|
|
2109
|
+
public get textureCoord2(): UnityEngine.Vector2;
|
|
2110
|
+
/** The Transform of the rigidbody or collider that was hit.
|
|
2111
|
+
*/
|
|
2112
|
+
public get transform(): UnityEngine.Transform;
|
|
2113
|
+
/** The Rigidbody of the collider that was hit. If the collider is not attached to a rigidbody then it is null.
|
|
2114
|
+
*/
|
|
2115
|
+
public get rigidbody(): UnityEngine.Rigidbody;
|
|
2116
|
+
/** The ArticulationBody of the collider that was hit. If the collider is not attached to an articulation body then it is null.
|
|
2117
|
+
*/
|
|
2118
|
+
public get articulationBody(): UnityEngine.ArticulationBody;
|
|
2119
|
+
/** The uv lightmap coordinate at the impact point.
|
|
2120
|
+
*/
|
|
2121
|
+
public get lightmapCoord(): UnityEngine.Vector2;
|
|
2122
|
+
}
|
|
2123
|
+
/** A header struct which contains colliding bodies.
|
|
2124
|
+
*/
|
|
2125
|
+
class ContactPairHeader extends System.ValueType
|
|
2126
|
+
{
|
|
2127
|
+
protected [__keep_incompatibility]: never;
|
|
2128
|
+
/** Instance ID of the first Rigidbody or the ArticualtionBody in the pair.
|
|
2129
|
+
*/
|
|
2130
|
+
public get bodyInstanceID(): number;
|
|
2131
|
+
/** Instance ID of the second Rigidbody or the ArticualtionBody in the pair.
|
|
2132
|
+
*/
|
|
2133
|
+
public get otherBodyInstanceID(): number;
|
|
2134
|
+
/** The first Rigidbody or ArticulationBody in the pair.
|
|
2135
|
+
*/
|
|
2136
|
+
public get body(): UnityEngine.Component;
|
|
2137
|
+
/** The second Rigidbody or ArticulationBody in the pair.
|
|
2138
|
+
*/
|
|
2139
|
+
public get otherBody(): UnityEngine.Component;
|
|
2140
|
+
/** Number of ContactPairs that this header contains.
|
|
2141
|
+
*/
|
|
2142
|
+
public get pairCount(): number;
|
|
2143
|
+
/** Gets the ContactPair at index of this pair header.
|
|
2144
|
+
* @param $index The ContactPair index.
|
|
2145
|
+
* @returns A reference or a copy of the ContactPair struct at index.
|
|
2146
|
+
*/
|
|
2147
|
+
public GetContactPair ($index: number) : $Ref<UnityEngine.ContactPair>
|
|
2148
|
+
}
|
|
2149
|
+
/** Mass-related modifiable properties of a contact pair.
|
|
2150
|
+
*/
|
|
2151
|
+
class ModifiableMassProperties extends System.ValueType
|
|
2152
|
+
{
|
|
2153
|
+
protected [__keep_incompatibility]: never;
|
|
2154
|
+
/** The inverse mass scaling that the solver should apply to the first body of this contact pair.
|
|
2155
|
+
*/
|
|
2156
|
+
public inverseMassScale : number
|
|
2157
|
+
/** The inverse inertia scaling that the solver should apply to the first body of this contact pair.
|
|
2158
|
+
*/
|
|
2159
|
+
public inverseInertiaScale : number
|
|
2160
|
+
/** The inverse mass scaling that the solver should apply to the second body of this contact pair.
|
|
2161
|
+
*/
|
|
2162
|
+
public otherInverseMassScale : number
|
|
2163
|
+
/** The inverse inertia scaling that the solver should apply to the second body of this contact pair.
|
|
2164
|
+
*/
|
|
2165
|
+
public otherInverseInertiaScale : number
|
|
2166
|
+
}
|
|
2167
|
+
/** Physics material describes how to handle colliding objects (friction, bounciness).
|
|
2168
|
+
*/
|
|
2169
|
+
class PhysicMaterial extends UnityEngine.Object
|
|
2170
|
+
{
|
|
2171
|
+
protected [__keep_incompatibility]: never;
|
|
2172
|
+
/** How bouncy is the surface? A value of 0 will not bounce. A value of 1 will bounce without any loss of energy.
|
|
2173
|
+
*/
|
|
2174
|
+
public get bounciness(): number;
|
|
2175
|
+
public set bounciness(value: number);
|
|
2176
|
+
/** The friction used when already moving. This value is usually between 0 and 1.
|
|
2177
|
+
*/
|
|
2178
|
+
public get dynamicFriction(): number;
|
|
2179
|
+
public set dynamicFriction(value: number);
|
|
2180
|
+
/** The friction coefficient used when an object is lying on a surface.
|
|
2181
|
+
*/
|
|
2182
|
+
public get staticFriction(): number;
|
|
2183
|
+
public set staticFriction(value: number);
|
|
2184
|
+
/** Determines how the friction is combined.
|
|
2185
|
+
*/
|
|
2186
|
+
public get frictionCombine(): UnityEngine.PhysicMaterialCombine;
|
|
2187
|
+
public set frictionCombine(value: UnityEngine.PhysicMaterialCombine);
|
|
2188
|
+
/** Determines how the bounciness is combined.
|
|
2189
|
+
*/
|
|
2190
|
+
public get bounceCombine(): UnityEngine.PhysicMaterialCombine;
|
|
2191
|
+
public set bounceCombine(value: UnityEngine.PhysicMaterialCombine);
|
|
2192
|
+
public constructor ()
|
|
2193
|
+
public constructor ($name: string)
|
|
2194
|
+
}
|
|
2195
|
+
/** A mesh collider allows you to do between meshes and primitives.
|
|
2196
|
+
*/
|
|
2197
|
+
class MeshCollider extends UnityEngine.Collider
|
|
2198
|
+
{
|
|
2199
|
+
protected [__keep_incompatibility]: never;
|
|
2200
|
+
/** The mesh object used for collision detection.
|
|
2201
|
+
*/
|
|
2202
|
+
public get sharedMesh(): UnityEngine.Mesh;
|
|
2203
|
+
public set sharedMesh(value: UnityEngine.Mesh);
|
|
2204
|
+
/** Use a convex collider from the mesh.
|
|
2205
|
+
*/
|
|
2206
|
+
public get convex(): boolean;
|
|
2207
|
+
public set convex(value: boolean);
|
|
2208
|
+
/** Options used to enable or disable certain features in mesh cooking.
|
|
2209
|
+
*/
|
|
2210
|
+
public get cookingOptions(): UnityEngine.MeshColliderCookingOptions;
|
|
2211
|
+
public set cookingOptions(value: UnityEngine.MeshColliderCookingOptions);
|
|
2212
|
+
public constructor ()
|
|
2213
|
+
}
|
|
2214
|
+
/** A capsule-shaped primitive collider.
|
|
2215
|
+
*/
|
|
2216
|
+
class CapsuleCollider extends UnityEngine.Collider
|
|
2217
|
+
{
|
|
2218
|
+
protected [__keep_incompatibility]: never;
|
|
2219
|
+
/** The center of the capsule, measured in the object's local space.
|
|
2220
|
+
*/
|
|
2221
|
+
public get center(): UnityEngine.Vector3;
|
|
2222
|
+
public set center(value: UnityEngine.Vector3);
|
|
2223
|
+
/** The radius of the sphere, measured in the object's local space.
|
|
2224
|
+
*/
|
|
2225
|
+
public get radius(): number;
|
|
2226
|
+
public set radius(value: number);
|
|
2227
|
+
/** The height of the capsule measured in the object's local space.
|
|
2228
|
+
*/
|
|
2229
|
+
public get height(): number;
|
|
2230
|
+
public set height(value: number);
|
|
2231
|
+
/** The direction of the capsule.
|
|
2232
|
+
*/
|
|
2233
|
+
public get direction(): number;
|
|
2234
|
+
public set direction(value: number);
|
|
2235
|
+
public constructor ()
|
|
2236
|
+
}
|
|
2237
|
+
/** A box-shaped primitive collider.
|
|
2238
|
+
*/
|
|
2239
|
+
class BoxCollider extends UnityEngine.Collider
|
|
2240
|
+
{
|
|
2241
|
+
protected [__keep_incompatibility]: never;
|
|
2242
|
+
/** The center of the box, measured in the object's local space.
|
|
2243
|
+
*/
|
|
2244
|
+
public get center(): UnityEngine.Vector3;
|
|
2245
|
+
public set center(value: UnityEngine.Vector3);
|
|
2246
|
+
/** The size of the box, measured in the object's local space.
|
|
2247
|
+
*/
|
|
2248
|
+
public get size(): UnityEngine.Vector3;
|
|
2249
|
+
public set size(value: UnityEngine.Vector3);
|
|
2250
|
+
public constructor ()
|
|
2251
|
+
}
|
|
2252
|
+
/** A sphere-shaped primitive collider.
|
|
2253
|
+
*/
|
|
2254
|
+
class SphereCollider extends UnityEngine.Collider
|
|
2255
|
+
{
|
|
2256
|
+
protected [__keep_incompatibility]: never;
|
|
2257
|
+
/** The center of the sphere in the object's local space.
|
|
2258
|
+
*/
|
|
2259
|
+
public get center(): UnityEngine.Vector3;
|
|
2260
|
+
public set center(value: UnityEngine.Vector3);
|
|
2261
|
+
/** The radius of the sphere measured in the object's local space.
|
|
2262
|
+
*/
|
|
2263
|
+
public get radius(): number;
|
|
2264
|
+
public set radius(value: number);
|
|
2265
|
+
public constructor ()
|
|
2266
|
+
}
|
|
2267
|
+
/** A force applied constantly.
|
|
2268
|
+
*/
|
|
2269
|
+
class ConstantForce extends UnityEngine.Behaviour
|
|
2270
|
+
{
|
|
2271
|
+
protected [__keep_incompatibility]: never;
|
|
2272
|
+
/** The force applied to the rigidbody every frame.
|
|
2273
|
+
*/
|
|
2274
|
+
public get force(): UnityEngine.Vector3;
|
|
2275
|
+
public set force(value: UnityEngine.Vector3);
|
|
2276
|
+
/** The force - relative to the rigid bodies coordinate system - applied every frame.
|
|
2277
|
+
*/
|
|
2278
|
+
public get relativeForce(): UnityEngine.Vector3;
|
|
2279
|
+
public set relativeForce(value: UnityEngine.Vector3);
|
|
2280
|
+
/** The torque applied to the rigidbody every frame.
|
|
2281
|
+
*/
|
|
2282
|
+
public get torque(): UnityEngine.Vector3;
|
|
2283
|
+
public set torque(value: UnityEngine.Vector3);
|
|
2284
|
+
/** The torque - relative to the rigid bodies coordinate system - applied every frame.
|
|
2285
|
+
*/
|
|
2286
|
+
public get relativeTorque(): UnityEngine.Vector3;
|
|
2287
|
+
public set relativeTorque(value: UnityEngine.Vector3);
|
|
2288
|
+
public constructor ()
|
|
2289
|
+
}
|
|
2290
|
+
/** Joint is the base class for all joints.
|
|
2291
|
+
*/
|
|
2292
|
+
class Joint extends UnityEngine.Component
|
|
2293
|
+
{
|
|
2294
|
+
protected [__keep_incompatibility]: never;
|
|
2295
|
+
/** A reference to another rigidbody this joint connects to.
|
|
2296
|
+
*/
|
|
2297
|
+
public get connectedBody(): UnityEngine.Rigidbody;
|
|
2298
|
+
public set connectedBody(value: UnityEngine.Rigidbody);
|
|
2299
|
+
/** A reference to an articulation body this joint connects to.
|
|
2300
|
+
*/
|
|
2301
|
+
public get connectedArticulationBody(): UnityEngine.ArticulationBody;
|
|
2302
|
+
public set connectedArticulationBody(value: UnityEngine.ArticulationBody);
|
|
2303
|
+
/** The Direction of the axis around which the body is constrained.
|
|
2304
|
+
*/
|
|
2305
|
+
public get axis(): UnityEngine.Vector3;
|
|
2306
|
+
public set axis(value: UnityEngine.Vector3);
|
|
2307
|
+
/** The Position of the anchor around which the joints motion is constrained.
|
|
2308
|
+
*/
|
|
2309
|
+
public get anchor(): UnityEngine.Vector3;
|
|
2310
|
+
public set anchor(value: UnityEngine.Vector3);
|
|
2311
|
+
/** Position of the anchor relative to the connected Rigidbody.
|
|
2312
|
+
*/
|
|
2313
|
+
public get connectedAnchor(): UnityEngine.Vector3;
|
|
2314
|
+
public set connectedAnchor(value: UnityEngine.Vector3);
|
|
2315
|
+
/** Should the connectedAnchor be calculated automatically?
|
|
2316
|
+
*/
|
|
2317
|
+
public get autoConfigureConnectedAnchor(): boolean;
|
|
2318
|
+
public set autoConfigureConnectedAnchor(value: boolean);
|
|
2319
|
+
/** The force that needs to be applied for this joint to break.
|
|
2320
|
+
*/
|
|
2321
|
+
public get breakForce(): number;
|
|
2322
|
+
public set breakForce(value: number);
|
|
2323
|
+
/** The torque that needs to be applied for this joint to break. To be able to break, a joint must be _Locked_ or _Limited_ on the axis of rotation where the torque is being applied. This means that some joints cannot break, such as an unconstrained Configurable Joint.
|
|
2324
|
+
*/
|
|
2325
|
+
public get breakTorque(): number;
|
|
2326
|
+
public set breakTorque(value: number);
|
|
2327
|
+
/** Enable collision between bodies connected with the joint.
|
|
2328
|
+
*/
|
|
2329
|
+
public get enableCollision(): boolean;
|
|
2330
|
+
public set enableCollision(value: boolean);
|
|
2331
|
+
/** Toggle preprocessing for this joint.
|
|
2332
|
+
*/
|
|
2333
|
+
public get enablePreprocessing(): boolean;
|
|
2334
|
+
public set enablePreprocessing(value: boolean);
|
|
2335
|
+
/** The scale to apply to the inverse mass and inertia tensor of the body prior to solving the constraints.
|
|
2336
|
+
*/
|
|
2337
|
+
public get massScale(): number;
|
|
2338
|
+
public set massScale(value: number);
|
|
2339
|
+
/** The scale to apply to the inverse mass and inertia tensor of the connected body prior to solving the constraints.
|
|
2340
|
+
*/
|
|
2341
|
+
public get connectedMassScale(): number;
|
|
2342
|
+
public set connectedMassScale(value: number);
|
|
2343
|
+
/** The force applied by the solver to satisfy all constraints.
|
|
2344
|
+
*/
|
|
2345
|
+
public get currentForce(): UnityEngine.Vector3;
|
|
2346
|
+
/** The torque applied by the solver to satisfy all constraints.
|
|
2347
|
+
*/
|
|
2348
|
+
public get currentTorque(): UnityEngine.Vector3;
|
|
2349
|
+
public constructor ()
|
|
2350
|
+
}
|
|
2351
|
+
/** The HingeJoint groups together 2 rigid bodies, constraining them to move like connected by a hinge.
|
|
2352
|
+
*/
|
|
2353
|
+
class HingeJoint extends UnityEngine.Joint
|
|
2354
|
+
{
|
|
2355
|
+
protected [__keep_incompatibility]: never;
|
|
2356
|
+
/** The motor will apply a force up to a maximum force to achieve the target velocity in degrees per second.
|
|
2357
|
+
*/
|
|
2358
|
+
public get motor(): UnityEngine.JointMotor;
|
|
2359
|
+
public set motor(value: UnityEngine.JointMotor);
|
|
2360
|
+
/** Limit of angular rotation (in degrees) on the hinge joint.
|
|
2361
|
+
*/
|
|
2362
|
+
public get limits(): UnityEngine.JointLimits;
|
|
2363
|
+
public set limits(value: UnityEngine.JointLimits);
|
|
2364
|
+
/** The spring attempts to reach a target angle by adding spring and damping forces.
|
|
2365
|
+
*/
|
|
2366
|
+
public get spring(): UnityEngine.JointSpring;
|
|
2367
|
+
public set spring(value: UnityEngine.JointSpring);
|
|
2368
|
+
/** Enables the joint's motor. Disabled by default.
|
|
2369
|
+
*/
|
|
2370
|
+
public get useMotor(): boolean;
|
|
2371
|
+
public set useMotor(value: boolean);
|
|
2372
|
+
/** Enables the joint's limits. Disabled by default.
|
|
2373
|
+
*/
|
|
2374
|
+
public get useLimits(): boolean;
|
|
2375
|
+
public set useLimits(value: boolean);
|
|
2376
|
+
/** If enabled, the angle of the hinge is extended to [-360, 360] degrees.
|
|
2377
|
+
*/
|
|
2378
|
+
public get extendedLimits(): boolean;
|
|
2379
|
+
public set extendedLimits(value: boolean);
|
|
2380
|
+
/** Enables the joint's spring. Disabled by default.
|
|
2381
|
+
*/
|
|
2382
|
+
public get useSpring(): boolean;
|
|
2383
|
+
public set useSpring(value: boolean);
|
|
2384
|
+
/** The angular velocity of the joint in degrees per second. (Read Only)
|
|
2385
|
+
*/
|
|
2386
|
+
public get velocity(): number;
|
|
2387
|
+
/** The current angle in degrees of the joint relative to its rest position. (Read Only)
|
|
2388
|
+
*/
|
|
2389
|
+
public get angle(): number;
|
|
2390
|
+
/** Defines whether the HingeJoint.spring outputs accelerations instead of forces.
|
|
2391
|
+
*/
|
|
2392
|
+
public get useAcceleration(): boolean;
|
|
2393
|
+
public set useAcceleration(value: boolean);
|
|
2394
|
+
public constructor ()
|
|
2395
|
+
}
|
|
2396
|
+
/** The spring joint ties together 2 rigid bodies, spring forces will be automatically applied to keep the object at the given distance.
|
|
2397
|
+
*/
|
|
2398
|
+
class SpringJoint extends UnityEngine.Joint
|
|
2399
|
+
{
|
|
2400
|
+
protected [__keep_incompatibility]: never;
|
|
2401
|
+
/** The spring force used to keep the two objects together.
|
|
2402
|
+
*/
|
|
2403
|
+
public get spring(): number;
|
|
2404
|
+
public set spring(value: number);
|
|
2405
|
+
/** The damper force used to dampen the spring force.
|
|
2406
|
+
*/
|
|
2407
|
+
public get damper(): number;
|
|
2408
|
+
public set damper(value: number);
|
|
2409
|
+
/** The minimum distance between the bodies relative to their initial distance.
|
|
2410
|
+
*/
|
|
2411
|
+
public get minDistance(): number;
|
|
2412
|
+
public set minDistance(value: number);
|
|
2413
|
+
/** The maximum distance between the bodies relative to their initial distance.
|
|
2414
|
+
*/
|
|
2415
|
+
public get maxDistance(): number;
|
|
2416
|
+
public set maxDistance(value: number);
|
|
2417
|
+
/** The maximum allowed error between the current spring length and the length defined by minDistance and maxDistance.
|
|
2418
|
+
*/
|
|
2419
|
+
public get tolerance(): number;
|
|
2420
|
+
public set tolerance(value: number);
|
|
2421
|
+
public constructor ()
|
|
2422
|
+
}
|
|
2423
|
+
/** The Fixed joint groups together 2 rigidbodies, making them stick together in their bound position.
|
|
2424
|
+
*/
|
|
2425
|
+
class FixedJoint extends UnityEngine.Joint
|
|
2426
|
+
{
|
|
2427
|
+
protected [__keep_incompatibility]: never;
|
|
2428
|
+
public constructor ()
|
|
2429
|
+
}
|
|
2430
|
+
/** Character Joints are mainly used for Ragdoll effects.
|
|
2431
|
+
*/
|
|
2432
|
+
class CharacterJoint extends UnityEngine.Joint
|
|
2433
|
+
{
|
|
2434
|
+
protected [__keep_incompatibility]: never;
|
|
2435
|
+
/** The secondary axis around which the joint can rotate.
|
|
2436
|
+
*/
|
|
2437
|
+
public get swingAxis(): UnityEngine.Vector3;
|
|
2438
|
+
public set swingAxis(value: UnityEngine.Vector3);
|
|
2439
|
+
/** The configuration of the spring attached to the twist limits of the joint.
|
|
2440
|
+
*/
|
|
2441
|
+
public get twistLimitSpring(): UnityEngine.SoftJointLimitSpring;
|
|
2442
|
+
public set twistLimitSpring(value: UnityEngine.SoftJointLimitSpring);
|
|
2443
|
+
/** The configuration of the spring attached to the swing limits of the joint.
|
|
2444
|
+
*/
|
|
2445
|
+
public get swingLimitSpring(): UnityEngine.SoftJointLimitSpring;
|
|
2446
|
+
public set swingLimitSpring(value: UnityEngine.SoftJointLimitSpring);
|
|
2447
|
+
/** The lower limit around the primary axis of the character joint.
|
|
2448
|
+
*/
|
|
2449
|
+
public get lowTwistLimit(): UnityEngine.SoftJointLimit;
|
|
2450
|
+
public set lowTwistLimit(value: UnityEngine.SoftJointLimit);
|
|
2451
|
+
/** The upper limit around the primary axis of the character joint.
|
|
2452
|
+
*/
|
|
2453
|
+
public get highTwistLimit(): UnityEngine.SoftJointLimit;
|
|
2454
|
+
public set highTwistLimit(value: UnityEngine.SoftJointLimit);
|
|
2455
|
+
/** The angular limit of rotation (in degrees) around the primary axis of the character joint.
|
|
2456
|
+
*/
|
|
2457
|
+
public get swing1Limit(): UnityEngine.SoftJointLimit;
|
|
2458
|
+
public set swing1Limit(value: UnityEngine.SoftJointLimit);
|
|
2459
|
+
/** The angular limit of rotation (in degrees) around the primary axis of the character joint.
|
|
2460
|
+
*/
|
|
2461
|
+
public get swing2Limit(): UnityEngine.SoftJointLimit;
|
|
2462
|
+
public set swing2Limit(value: UnityEngine.SoftJointLimit);
|
|
2463
|
+
/** Brings violated constraints back into alignment even when the solver fails.
|
|
2464
|
+
*/
|
|
2465
|
+
public get enableProjection(): boolean;
|
|
2466
|
+
public set enableProjection(value: boolean);
|
|
2467
|
+
/** Set the linear tolerance threshold for projection.
|
|
2468
|
+
*/
|
|
2469
|
+
public get projectionDistance(): number;
|
|
2470
|
+
public set projectionDistance(value: number);
|
|
2471
|
+
/** Set the angular tolerance threshold (in degrees) for projection.
|
|
2472
|
+
*/
|
|
2473
|
+
public get projectionAngle(): number;
|
|
2474
|
+
public set projectionAngle(value: number);
|
|
2475
|
+
public constructor ()
|
|
2476
|
+
}
|
|
2477
|
+
/** The configurable joint is an extremely flexible joint giving you complete control over rotation and linear motion.
|
|
2478
|
+
*/
|
|
2479
|
+
class ConfigurableJoint extends UnityEngine.Joint
|
|
2480
|
+
{
|
|
2481
|
+
protected [__keep_incompatibility]: never;
|
|
2482
|
+
/** The joint's secondary axis.
|
|
2483
|
+
*/
|
|
2484
|
+
public get secondaryAxis(): UnityEngine.Vector3;
|
|
2485
|
+
public set secondaryAxis(value: UnityEngine.Vector3);
|
|
2486
|
+
/** Allow movement along the X axis to be Free, completely Locked, or Limited according to Linear Limit.
|
|
2487
|
+
*/
|
|
2488
|
+
public get xMotion(): UnityEngine.ConfigurableJointMotion;
|
|
2489
|
+
public set xMotion(value: UnityEngine.ConfigurableJointMotion);
|
|
2490
|
+
/** Allow movement along the Y axis to be Free, completely Locked, or Limited according to Linear Limit.
|
|
2491
|
+
*/
|
|
2492
|
+
public get yMotion(): UnityEngine.ConfigurableJointMotion;
|
|
2493
|
+
public set yMotion(value: UnityEngine.ConfigurableJointMotion);
|
|
2494
|
+
/** Allow movement along the Z axis to be Free, completely Locked, or Limited according to Linear Limit.
|
|
2495
|
+
*/
|
|
2496
|
+
public get zMotion(): UnityEngine.ConfigurableJointMotion;
|
|
2497
|
+
public set zMotion(value: UnityEngine.ConfigurableJointMotion);
|
|
2498
|
+
/** Allow rotation around the X axis to be Free, completely Locked, or Limited according to Low and High Angular XLimit.
|
|
2499
|
+
*/
|
|
2500
|
+
public get angularXMotion(): UnityEngine.ConfigurableJointMotion;
|
|
2501
|
+
public set angularXMotion(value: UnityEngine.ConfigurableJointMotion);
|
|
2502
|
+
/** Allow rotation around the Y axis to be Free, completely Locked, or Limited according to Angular YLimit.
|
|
2503
|
+
*/
|
|
2504
|
+
public get angularYMotion(): UnityEngine.ConfigurableJointMotion;
|
|
2505
|
+
public set angularYMotion(value: UnityEngine.ConfigurableJointMotion);
|
|
2506
|
+
/** Allow rotation around the Z axis to be Free, completely Locked, or Limited according to Angular ZLimit.
|
|
2507
|
+
*/
|
|
2508
|
+
public get angularZMotion(): UnityEngine.ConfigurableJointMotion;
|
|
2509
|
+
public set angularZMotion(value: UnityEngine.ConfigurableJointMotion);
|
|
2510
|
+
/** The configuration of the spring attached to the linear limit of the joint.
|
|
2511
|
+
*/
|
|
2512
|
+
public get linearLimitSpring(): UnityEngine.SoftJointLimitSpring;
|
|
2513
|
+
public set linearLimitSpring(value: UnityEngine.SoftJointLimitSpring);
|
|
2514
|
+
/** The configuration of the spring attached to the angular X limit of the joint.
|
|
2515
|
+
*/
|
|
2516
|
+
public get angularXLimitSpring(): UnityEngine.SoftJointLimitSpring;
|
|
2517
|
+
public set angularXLimitSpring(value: UnityEngine.SoftJointLimitSpring);
|
|
2518
|
+
/** The configuration of the spring attached to the angular Y and angular Z limits of the joint.
|
|
2519
|
+
*/
|
|
2520
|
+
public get angularYZLimitSpring(): UnityEngine.SoftJointLimitSpring;
|
|
2521
|
+
public set angularYZLimitSpring(value: UnityEngine.SoftJointLimitSpring);
|
|
2522
|
+
/** Boundary defining movement restriction, based on distance from the joint's origin.
|
|
2523
|
+
*/
|
|
2524
|
+
public get linearLimit(): UnityEngine.SoftJointLimit;
|
|
2525
|
+
public set linearLimit(value: UnityEngine.SoftJointLimit);
|
|
2526
|
+
/** Boundary defining lower rotation restriction, based on delta from original rotation.
|
|
2527
|
+
*/
|
|
2528
|
+
public get lowAngularXLimit(): UnityEngine.SoftJointLimit;
|
|
2529
|
+
public set lowAngularXLimit(value: UnityEngine.SoftJointLimit);
|
|
2530
|
+
/** Boundary defining upper rotation restriction, based on delta from original rotation.
|
|
2531
|
+
*/
|
|
2532
|
+
public get highAngularXLimit(): UnityEngine.SoftJointLimit;
|
|
2533
|
+
public set highAngularXLimit(value: UnityEngine.SoftJointLimit);
|
|
2534
|
+
/** Boundary defining rotation restriction, based on delta from original rotation.
|
|
2535
|
+
*/
|
|
2536
|
+
public get angularYLimit(): UnityEngine.SoftJointLimit;
|
|
2537
|
+
public set angularYLimit(value: UnityEngine.SoftJointLimit);
|
|
2538
|
+
/** Boundary defining rotation restriction, based on delta from original rotation.
|
|
2539
|
+
*/
|
|
2540
|
+
public get angularZLimit(): UnityEngine.SoftJointLimit;
|
|
2541
|
+
public set angularZLimit(value: UnityEngine.SoftJointLimit);
|
|
2542
|
+
/** The desired position that the joint should move into.
|
|
2543
|
+
*/
|
|
2544
|
+
public get targetPosition(): UnityEngine.Vector3;
|
|
2545
|
+
public set targetPosition(value: UnityEngine.Vector3);
|
|
2546
|
+
/** The desired velocity that the joint should move along.
|
|
2547
|
+
*/
|
|
2548
|
+
public get targetVelocity(): UnityEngine.Vector3;
|
|
2549
|
+
public set targetVelocity(value: UnityEngine.Vector3);
|
|
2550
|
+
/** Definition of how the joint's movement will behave along its local X axis.
|
|
2551
|
+
*/
|
|
2552
|
+
public get xDrive(): UnityEngine.JointDrive;
|
|
2553
|
+
public set xDrive(value: UnityEngine.JointDrive);
|
|
2554
|
+
/** Definition of how the joint's movement will behave along its local Y axis.
|
|
2555
|
+
*/
|
|
2556
|
+
public get yDrive(): UnityEngine.JointDrive;
|
|
2557
|
+
public set yDrive(value: UnityEngine.JointDrive);
|
|
2558
|
+
/** Definition of how the joint's movement will behave along its local Z axis.
|
|
2559
|
+
*/
|
|
2560
|
+
public get zDrive(): UnityEngine.JointDrive;
|
|
2561
|
+
public set zDrive(value: UnityEngine.JointDrive);
|
|
2562
|
+
/** This is a Quaternion. It defines the desired rotation that the joint should rotate into.
|
|
2563
|
+
*/
|
|
2564
|
+
public get targetRotation(): UnityEngine.Quaternion;
|
|
2565
|
+
public set targetRotation(value: UnityEngine.Quaternion);
|
|
2566
|
+
/** This is a Vector3. It defines the desired angular velocity that the joint should rotate into.
|
|
2567
|
+
*/
|
|
2568
|
+
public get targetAngularVelocity(): UnityEngine.Vector3;
|
|
2569
|
+
public set targetAngularVelocity(value: UnityEngine.Vector3);
|
|
2570
|
+
/** Control the object's rotation with either X & YZ or Slerp Drive by itself.
|
|
2571
|
+
*/
|
|
2572
|
+
public get rotationDriveMode(): UnityEngine.RotationDriveMode;
|
|
2573
|
+
public set rotationDriveMode(value: UnityEngine.RotationDriveMode);
|
|
2574
|
+
/** Definition of how the joint's rotation will behave around its local X axis. Only used if Rotation Drive Mode is Swing & Twist.
|
|
2575
|
+
*/
|
|
2576
|
+
public get angularXDrive(): UnityEngine.JointDrive;
|
|
2577
|
+
public set angularXDrive(value: UnityEngine.JointDrive);
|
|
2578
|
+
/** Definition of how the joint's rotation will behave around its local Y and Z axes. Only used if Rotation Drive Mode is Swing & Twist.
|
|
2579
|
+
*/
|
|
2580
|
+
public get angularYZDrive(): UnityEngine.JointDrive;
|
|
2581
|
+
public set angularYZDrive(value: UnityEngine.JointDrive);
|
|
2582
|
+
/** Definition of how the joint's rotation will behave around all local axes. Only used if Rotation Drive Mode is Slerp Only.
|
|
2583
|
+
*/
|
|
2584
|
+
public get slerpDrive(): UnityEngine.JointDrive;
|
|
2585
|
+
public set slerpDrive(value: UnityEngine.JointDrive);
|
|
2586
|
+
/** Brings violated constraints back into alignment even when the solver fails. Projection is not a physical process and does not preserve momentum or respect collision geometry. It is best avoided if practical, but can be useful in improving simulation quality where joint separation results in unacceptable artifacts.
|
|
2587
|
+
*/
|
|
2588
|
+
public get projectionMode(): UnityEngine.JointProjectionMode;
|
|
2589
|
+
public set projectionMode(value: UnityEngine.JointProjectionMode);
|
|
2590
|
+
/** Set the linear tolerance threshold for projection.
|
|
2591
|
+
If the joint separates by more than this distance along its locked degrees of freedom, the solver
|
|
2592
|
+
will move the bodies to close the distance.
|
|
2593
|
+
Setting a very small tolerance may result in simulation jitter or other artifacts.
|
|
2594
|
+
Sometimes it is not possible to project (for example when the joints form a cycle).
|
|
2595
|
+
*/
|
|
2596
|
+
public get projectionDistance(): number;
|
|
2597
|
+
public set projectionDistance(value: number);
|
|
2598
|
+
/** Set the angular tolerance threshold (in degrees) for projection.
|
|
2599
|
+
If the joint deviates by more than this angle around its locked angular degrees of freedom,
|
|
2600
|
+
the solver will move the bodies to close the angle.
|
|
2601
|
+
Setting a very small tolerance may result in simulation jitter or other artifacts.
|
|
2602
|
+
Sometimes it is not possible to project (for example when the joints form a cycle).
|
|
2603
|
+
*/
|
|
2604
|
+
public get projectionAngle(): number;
|
|
2605
|
+
public set projectionAngle(value: number);
|
|
2606
|
+
/** If enabled, all Target values will be calculated in world space instead of the object's local space.
|
|
2607
|
+
*/
|
|
2608
|
+
public get configuredInWorldSpace(): boolean;
|
|
2609
|
+
public set configuredInWorldSpace(value: boolean);
|
|
2610
|
+
/** Enable this property to swap the order in which the physics engine processes the Rigidbodies involved in the joint. This results in different joint motion but has no impact on Rigidbodies and anchors.
|
|
2611
|
+
*/
|
|
2612
|
+
public get swapBodies(): boolean;
|
|
2613
|
+
public set swapBodies(value: boolean);
|
|
2614
|
+
public constructor ()
|
|
2615
|
+
}
|
|
2616
|
+
/** A flag enum to determine which simulation stages to run.
|
|
2617
|
+
*/
|
|
2618
|
+
enum SimulationStage
|
|
2619
|
+
{ None = 0, PrepareSimulation = 1, RunSimulation = 2, PublishSimulationResults = 4, All = 7 }
|
|
2620
|
+
/** An enumerator that specifies physics simulation options.
|
|
2621
|
+
*/
|
|
2622
|
+
enum SimulationOption
|
|
2623
|
+
{ None = 0, SyncTransforms = 1, IgnoreEmptyScenes = 2, All = 3 }
|
|
2624
|
+
/** Scene extensions to access the underlying physics scene.
|
|
2625
|
+
*/
|
|
2626
|
+
class PhysicsSceneExtensions extends System.Object
|
|
2627
|
+
{
|
|
2628
|
+
protected [__keep_incompatibility]: never;
|
|
2629
|
+
/** An extension method that returns the 3D physics Scene from the Scene.
|
|
2630
|
+
* @param $scene The Scene from which to return the 3D physics Scene.
|
|
2631
|
+
* @returns The 3D physics Scene used by the Scene.
|
|
2632
|
+
*/
|
|
2633
|
+
public static GetPhysicsScene ($scene: UnityEngine.SceneManagement.Scene) : UnityEngine.PhysicsScene
|
|
2634
|
+
}
|
|
2635
|
+
/** A pair of Colliders that belong to the bodies in the parent ContactPairHeader struct.
|
|
2636
|
+
*/
|
|
2637
|
+
class ContactPair extends System.ValueType
|
|
2638
|
+
{
|
|
2639
|
+
protected [__keep_incompatibility]: never;
|
|
2640
|
+
/** Instance ID of the first Collider in the ContactPair.
|
|
2641
|
+
*/
|
|
2642
|
+
public get colliderInstanceID(): number;
|
|
2643
|
+
/** Instance ID of the second Collider in the ContactPair.
|
|
2644
|
+
*/
|
|
2645
|
+
public get otherColliderInstanceID(): number;
|
|
2646
|
+
/** The first Collider component of the ContactPair.
|
|
2647
|
+
*/
|
|
2648
|
+
public get collider(): UnityEngine.Collider;
|
|
2649
|
+
/** The second Collider component of the ContactPair.
|
|
2650
|
+
*/
|
|
2651
|
+
public get otherCollider(): UnityEngine.Collider;
|
|
2652
|
+
/** The number of ContactPairPoints that this pair contains.
|
|
2653
|
+
*/
|
|
2654
|
+
public get contactCount(): number;
|
|
2655
|
+
/** Total impulse sum of the pair.
|
|
2656
|
+
*/
|
|
2657
|
+
public get impulseSum(): UnityEngine.Vector3;
|
|
2658
|
+
/** Whether or not this pair is equivalent to a pair reported in MonoBehaviour.OnCollisionEnter events.
|
|
2659
|
+
*/
|
|
2660
|
+
public get isCollisionEnter(): boolean;
|
|
2661
|
+
/** Whether or not this pair is equivalent to a pair reported in MonoBehaviour.OnCollisionExit events.
|
|
2662
|
+
*/
|
|
2663
|
+
public get isCollisionExit(): boolean;
|
|
2664
|
+
/** Whether or not this pair is equivalent to a pair reported in MonoBehaviour.OnCollisionStay events.
|
|
2665
|
+
*/
|
|
2666
|
+
public get isCollisionStay(): boolean;
|
|
2667
|
+
public CopyToNativeArray ($buffer: Unity.Collections.NativeArray$1<UnityEngine.ContactPairPoint>) : void
|
|
2668
|
+
/** Gets the ContactPairPoint at the provided index of this pair.
|
|
2669
|
+
* @param $index The ContactPairPoint index.
|
|
2670
|
+
* @returns A reference or a copy of the ContactPairPoint struct at index.
|
|
2671
|
+
*/
|
|
2672
|
+
public GetContactPoint ($index: number) : $Ref<UnityEngine.ContactPairPoint>
|
|
2673
|
+
/** Get the index of a face that a particular contact point belongs to in this ContactPairPoint.
|
|
2674
|
+
* @param $contactIndex The ContactPairPoint index.
|
|
2675
|
+
* @returns Index of a face this contact point belongs to.
|
|
2676
|
+
*/
|
|
2677
|
+
public GetContactPointFaceIndex ($contactIndex: number) : number
|
|
2678
|
+
}
|
|
2679
|
+
/** A readonly struct describing a contact point between two Colliders.
|
|
2680
|
+
*/
|
|
2681
|
+
class ContactPairPoint extends System.ValueType
|
|
2682
|
+
{
|
|
2683
|
+
protected [__keep_incompatibility]: never;
|
|
2684
|
+
/** The position of the contact point between the Colliders, in world space.
|
|
2685
|
+
*/
|
|
2686
|
+
public get position(): UnityEngine.Vector3;
|
|
2687
|
+
/** The distance between the edges of Colliders at the contact point.
|
|
2688
|
+
*/
|
|
2689
|
+
public get separation(): number;
|
|
2690
|
+
/** Normal of the contact point.
|
|
2691
|
+
*/
|
|
2692
|
+
public get normal(): UnityEngine.Vector3;
|
|
2693
|
+
/** The impulse applied to this contact pair to resolve the collision.
|
|
2694
|
+
*/
|
|
2695
|
+
public get impulse(): UnityEngine.Vector3;
|
|
2696
|
+
}
|
|
2697
|
+
/** Creates a struct to set up parameters for batch queries: RaycastCommand, BoxcastCommand, CapsulecastCommand, SpherecastCommand.
|
|
2698
|
+
*/
|
|
2699
|
+
class QueryParameters extends System.ValueType
|
|
2700
|
+
{
|
|
2701
|
+
protected [__keep_incompatibility]: never;
|
|
2702
|
+
/** A LayerMask that is used to selectively ignore Colliders when casting a ray.
|
|
2703
|
+
*/
|
|
2704
|
+
public layerMask : number
|
|
2705
|
+
/** Whether raycast batch query should hit multiple faces.
|
|
2706
|
+
*/
|
|
2707
|
+
public hitMultipleFaces : boolean
|
|
2708
|
+
/** Whether queries hit Triggers by default.
|
|
2709
|
+
*/
|
|
2710
|
+
public hitTriggers : UnityEngine.QueryTriggerInteraction
|
|
2711
|
+
/** Whether physics queries should hit back-face triangles.
|
|
2712
|
+
*/
|
|
2713
|
+
public hitBackfaces : boolean
|
|
2714
|
+
/** Create a default QueryParameters struct.
|
|
2715
|
+
*/
|
|
2716
|
+
public static get Default(): UnityEngine.QueryParameters;
|
|
2717
|
+
public constructor ($layerMask?: number, $hitMultipleFaces?: boolean, $hitTriggers?: UnityEngine.QueryTriggerInteraction, $hitBackfaces?: boolean)
|
|
2718
|
+
}
|
|
2719
|
+
/** Struct used to retrieve information from an Overlap batch query.
|
|
2720
|
+
*/
|
|
2721
|
+
class ColliderHit extends System.ValueType
|
|
2722
|
+
{
|
|
2723
|
+
protected [__keep_incompatibility]: never;
|
|
2724
|
+
/** The instance ID of the Collider that was hit.
|
|
2725
|
+
*/
|
|
2726
|
+
public get instanceID(): number;
|
|
2727
|
+
/** The Collider that was hit.
|
|
2728
|
+
*/
|
|
2729
|
+
public get collider(): UnityEngine.Collider;
|
|
2730
|
+
}
|
|
2731
|
+
/** Struct used to set up a raycast command to be performed asynchronously during a job.
|
|
2732
|
+
*/
|
|
2733
|
+
class RaycastCommand extends System.ValueType
|
|
2734
|
+
{
|
|
2735
|
+
protected [__keep_incompatibility]: never;
|
|
2736
|
+
/** Structure for specifying additional parameters for a batch query such as layer mask, hit multiple mesh faces, hit triggers and hit backfaces.
|
|
2737
|
+
*/
|
|
2738
|
+
public queryParameters : UnityEngine.QueryParameters
|
|
2739
|
+
/** The starting point of the ray in world coordinates.
|
|
2740
|
+
*/
|
|
2741
|
+
public get from(): UnityEngine.Vector3;
|
|
2742
|
+
public set from(value: UnityEngine.Vector3);
|
|
2743
|
+
/** The direction of the ray.
|
|
2744
|
+
*/
|
|
2745
|
+
public get direction(): UnityEngine.Vector3;
|
|
2746
|
+
public set direction(value: UnityEngine.Vector3);
|
|
2747
|
+
/** The physics scene this command is run in.
|
|
2748
|
+
*/
|
|
2749
|
+
public get physicsScene(): UnityEngine.PhysicsScene;
|
|
2750
|
+
public set physicsScene(value: UnityEngine.PhysicsScene);
|
|
2751
|
+
/** The maximum distance the ray should check for collisions.
|
|
2752
|
+
*/
|
|
2753
|
+
public get distance(): number;
|
|
2754
|
+
public set distance(value: number);
|
|
2755
|
+
public static ScheduleBatch ($commands: Unity.Collections.NativeArray$1<UnityEngine.RaycastCommand>, $results: Unity.Collections.NativeArray$1<UnityEngine.RaycastHit>, $minCommandsPerJob: number, $maxHits: number, $dependsOn?: Unity.Jobs.JobHandle) : Unity.Jobs.JobHandle
|
|
2756
|
+
public static ScheduleBatch ($commands: Unity.Collections.NativeArray$1<UnityEngine.RaycastCommand>, $results: Unity.Collections.NativeArray$1<UnityEngine.RaycastHit>, $minCommandsPerJob: number, $dependsOn?: Unity.Jobs.JobHandle) : Unity.Jobs.JobHandle
|
|
2757
|
+
public constructor ($from: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $queryParameters: UnityEngine.QueryParameters, $distance?: number)
|
|
2758
|
+
public constructor ($physicsScene: UnityEngine.PhysicsScene, $from: UnityEngine.Vector3, $direction: UnityEngine.Vector3, $queryParameters: UnityEngine.QueryParameters, $distance?: number)
|
|
2759
|
+
}
|
|
2760
|
+
/** Use this struct to set up a sphere cast command that is performed asynchronously during a job.
|
|
2761
|
+
*/
|
|
2762
|
+
class SpherecastCommand extends System.ValueType
|
|
2763
|
+
{
|
|
2764
|
+
protected [__keep_incompatibility]: never;
|
|
2765
|
+
/** Structure for specifying additional parameters for a batch query such as layer mask, hit triggers and hit backfaces.
|
|
2766
|
+
*/
|
|
2767
|
+
public queryParameters : UnityEngine.QueryParameters
|
|
2768
|
+
/** The starting point of the sphere cast in world coordinates.
|
|
2769
|
+
*/
|
|
2770
|
+
public get origin(): UnityEngine.Vector3;
|
|
2771
|
+
public set origin(value: UnityEngine.Vector3);
|
|
2772
|
+
/** The radius of the casting sphere.
|
|
2773
|
+
*/
|
|
2774
|
+
public get radius(): number;
|
|
2775
|
+
public set radius(value: number);
|
|
2776
|
+
/** The direction of the sphere cast.
|
|
2777
|
+
*/
|
|
2778
|
+
public get direction(): UnityEngine.Vector3;
|
|
2779
|
+
public set direction(value: UnityEngine.Vector3);
|
|
2780
|
+
/** The maximum distance the sphere should check for collisions.
|
|
2781
|
+
*/
|
|
2782
|
+
public get distance(): number;
|
|
2783
|
+
public set distance(value: number);
|
|
2784
|
+
/** The physics scene this command is run in.
|
|
2785
|
+
*/
|
|
2786
|
+
public get physicsScene(): UnityEngine.PhysicsScene;
|
|
2787
|
+
public set physicsScene(value: UnityEngine.PhysicsScene);
|
|
2788
|
+
public static ScheduleBatch ($commands: Unity.Collections.NativeArray$1<UnityEngine.SpherecastCommand>, $results: Unity.Collections.NativeArray$1<UnityEngine.RaycastHit>, $minCommandsPerJob: number, $maxHits: number, $dependsOn?: Unity.Jobs.JobHandle) : Unity.Jobs.JobHandle
|
|
2789
|
+
public static ScheduleBatch ($commands: Unity.Collections.NativeArray$1<UnityEngine.SpherecastCommand>, $results: Unity.Collections.NativeArray$1<UnityEngine.RaycastHit>, $minCommandsPerJob: number, $dependsOn?: Unity.Jobs.JobHandle) : Unity.Jobs.JobHandle
|
|
2790
|
+
public constructor ($origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $queryParameters: UnityEngine.QueryParameters, $distance?: number)
|
|
2791
|
+
public constructor ($physicsScene: UnityEngine.PhysicsScene, $origin: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $queryParameters: UnityEngine.QueryParameters, $distance?: number)
|
|
2792
|
+
}
|
|
2793
|
+
/** Use this struct to set up a capsule cast command that is performed asynchronously during a job.
|
|
2794
|
+
*/
|
|
2795
|
+
class CapsulecastCommand extends System.ValueType
|
|
2796
|
+
{
|
|
2797
|
+
protected [__keep_incompatibility]: never;
|
|
2798
|
+
/** Structure for specifying additional parameters for a batch query such as layer mask, hit triggers and hit backfaces.
|
|
2799
|
+
*/
|
|
2800
|
+
public queryParameters : UnityEngine.QueryParameters
|
|
2801
|
+
/** The center of the sphere at the start of the capsule.
|
|
2802
|
+
*/
|
|
2803
|
+
public get point1(): UnityEngine.Vector3;
|
|
2804
|
+
public set point1(value: UnityEngine.Vector3);
|
|
2805
|
+
/** The center of the sphere at the end of the capsule.
|
|
2806
|
+
*/
|
|
2807
|
+
public get point2(): UnityEngine.Vector3;
|
|
2808
|
+
public set point2(value: UnityEngine.Vector3);
|
|
2809
|
+
/** The radius of the capsule.
|
|
2810
|
+
*/
|
|
2811
|
+
public get radius(): number;
|
|
2812
|
+
public set radius(value: number);
|
|
2813
|
+
/** The direction of the capsule cast.
|
|
2814
|
+
*/
|
|
2815
|
+
public get direction(): UnityEngine.Vector3;
|
|
2816
|
+
public set direction(value: UnityEngine.Vector3);
|
|
2817
|
+
/** The maximum distance the capsule cast checks for collision.
|
|
2818
|
+
*/
|
|
2819
|
+
public get distance(): number;
|
|
2820
|
+
public set distance(value: number);
|
|
2821
|
+
/** The physics scene this command is run in.
|
|
2822
|
+
*/
|
|
2823
|
+
public get physicsScene(): UnityEngine.PhysicsScene;
|
|
2824
|
+
public set physicsScene(value: UnityEngine.PhysicsScene);
|
|
2825
|
+
public static ScheduleBatch ($commands: Unity.Collections.NativeArray$1<UnityEngine.CapsulecastCommand>, $results: Unity.Collections.NativeArray$1<UnityEngine.RaycastHit>, $minCommandsPerJob: number, $maxHits: number, $dependsOn?: Unity.Jobs.JobHandle) : Unity.Jobs.JobHandle
|
|
2826
|
+
public static ScheduleBatch ($commands: Unity.Collections.NativeArray$1<UnityEngine.CapsulecastCommand>, $results: Unity.Collections.NativeArray$1<UnityEngine.RaycastHit>, $minCommandsPerJob: number, $dependsOn?: Unity.Jobs.JobHandle) : Unity.Jobs.JobHandle
|
|
2827
|
+
public constructor ($p1: UnityEngine.Vector3, $p2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $queryParameters: UnityEngine.QueryParameters, $distance?: number)
|
|
2828
|
+
public constructor ($physicsScene: UnityEngine.PhysicsScene, $p1: UnityEngine.Vector3, $p2: UnityEngine.Vector3, $radius: number, $direction: UnityEngine.Vector3, $queryParameters: UnityEngine.QueryParameters, $distance?: number)
|
|
2829
|
+
}
|
|
2830
|
+
/** Use this struct to set up a box cast command to be performed asynchronously during a job.
|
|
2831
|
+
*/
|
|
2832
|
+
class BoxcastCommand extends System.ValueType
|
|
2833
|
+
{
|
|
2834
|
+
protected [__keep_incompatibility]: never;
|
|
2835
|
+
/** Structure for specifying additional parameters for a batch query such as layer mask, hit triggers and hit backfaces.
|
|
2836
|
+
*/
|
|
2837
|
+
public queryParameters : UnityEngine.QueryParameters
|
|
2838
|
+
/** The center of the box.
|
|
2839
|
+
*/
|
|
2840
|
+
public get center(): UnityEngine.Vector3;
|
|
2841
|
+
public set center(value: UnityEngine.Vector3);
|
|
2842
|
+
/** The half size of the box in each dimension.
|
|
2843
|
+
*/
|
|
2844
|
+
public get halfExtents(): UnityEngine.Vector3;
|
|
2845
|
+
public set halfExtents(value: UnityEngine.Vector3);
|
|
2846
|
+
/** The rotation of the box.
|
|
2847
|
+
*/
|
|
2848
|
+
public get orientation(): UnityEngine.Quaternion;
|
|
2849
|
+
public set orientation(value: UnityEngine.Quaternion);
|
|
2850
|
+
/** The direction in which to sweep the box.
|
|
2851
|
+
*/
|
|
2852
|
+
public get direction(): UnityEngine.Vector3;
|
|
2853
|
+
public set direction(value: UnityEngine.Vector3);
|
|
2854
|
+
/** The maximum distance of the sweep.
|
|
2855
|
+
*/
|
|
2856
|
+
public get distance(): number;
|
|
2857
|
+
public set distance(value: number);
|
|
2858
|
+
/** The physics scene this command is run in.
|
|
2859
|
+
*/
|
|
2860
|
+
public get physicsScene(): UnityEngine.PhysicsScene;
|
|
2861
|
+
public set physicsScene(value: UnityEngine.PhysicsScene);
|
|
2862
|
+
public static ScheduleBatch ($commands: Unity.Collections.NativeArray$1<UnityEngine.BoxcastCommand>, $results: Unity.Collections.NativeArray$1<UnityEngine.RaycastHit>, $minCommandsPerJob: number, $maxHits: number, $dependsOn?: Unity.Jobs.JobHandle) : Unity.Jobs.JobHandle
|
|
2863
|
+
public static ScheduleBatch ($commands: Unity.Collections.NativeArray$1<UnityEngine.BoxcastCommand>, $results: Unity.Collections.NativeArray$1<UnityEngine.RaycastHit>, $minCommandsPerJob: number, $dependsOn?: Unity.Jobs.JobHandle) : Unity.Jobs.JobHandle
|
|
2864
|
+
public constructor ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $direction: UnityEngine.Vector3, $queryParameters: UnityEngine.QueryParameters, $distance?: number)
|
|
2865
|
+
public constructor ($physicsScene: UnityEngine.PhysicsScene, $center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $direction: UnityEngine.Vector3, $queryParameters: UnityEngine.QueryParameters, $distance?: number)
|
|
2866
|
+
}
|
|
2867
|
+
/** Struct used to set up a closest point command to be performed asynchronously during a job.
|
|
2868
|
+
When you use this struct to schedule a batch of closest commands, they are performed asynchronously and in parallel to each other. The results of the closest points are written to the results buffer. Because the results are written asynchronously, the results buffer cannot be accessed until the job has been completed.
|
|
2869
|
+
The result for a command at index N in the command buffer is stored at index N in the results buffer.
|
|
2870
|
+
*/
|
|
2871
|
+
class ClosestPointCommand extends System.ValueType
|
|
2872
|
+
{
|
|
2873
|
+
protected [__keep_incompatibility]: never;
|
|
2874
|
+
/** Location you want to find the closest point to.
|
|
2875
|
+
*/
|
|
2876
|
+
public get point(): UnityEngine.Vector3;
|
|
2877
|
+
public set point(value: UnityEngine.Vector3);
|
|
2878
|
+
/** The ID of the Collider that you find the closest point on.
|
|
2879
|
+
*/
|
|
2880
|
+
public get colliderInstanceID(): number;
|
|
2881
|
+
public set colliderInstanceID(value: number);
|
|
2882
|
+
/** The position of the Collider.
|
|
2883
|
+
*/
|
|
2884
|
+
public get position(): UnityEngine.Vector3;
|
|
2885
|
+
public set position(value: UnityEngine.Vector3);
|
|
2886
|
+
/** The rotation of the Collider.
|
|
2887
|
+
*/
|
|
2888
|
+
public get rotation(): UnityEngine.Quaternion;
|
|
2889
|
+
public set rotation(value: UnityEngine.Quaternion);
|
|
2890
|
+
/** The global scale of the Collider.
|
|
2891
|
+
*/
|
|
2892
|
+
public get scale(): UnityEngine.Vector3;
|
|
2893
|
+
public set scale(value: UnityEngine.Vector3);
|
|
2894
|
+
public static ScheduleBatch ($commands: Unity.Collections.NativeArray$1<UnityEngine.ClosestPointCommand>, $results: Unity.Collections.NativeArray$1<UnityEngine.Vector3>, $minCommandsPerJob: number, $dependsOn?: Unity.Jobs.JobHandle) : Unity.Jobs.JobHandle
|
|
2895
|
+
public constructor ($point: UnityEngine.Vector3, $colliderInstanceID: number, $position: UnityEngine.Vector3, $rotation: UnityEngine.Quaternion, $scale: UnityEngine.Vector3)
|
|
2896
|
+
public constructor ($point: UnityEngine.Vector3, $collider: UnityEngine.Collider, $position: UnityEngine.Vector3, $rotation: UnityEngine.Quaternion, $scale: UnityEngine.Vector3)
|
|
2897
|
+
}
|
|
2898
|
+
/** Struct used to setup an overlap sphere command to be performed asynchronously during a job.
|
|
2899
|
+
*/
|
|
2900
|
+
class OverlapSphereCommand extends System.ValueType
|
|
2901
|
+
{
|
|
2902
|
+
protected [__keep_incompatibility]: never;
|
|
2903
|
+
/** Structure for specifying additional parameters for a batch query such as layer mask or hit triggers.
|
|
2904
|
+
*/
|
|
2905
|
+
public queryParameters : UnityEngine.QueryParameters
|
|
2906
|
+
/** The center of the sphere.
|
|
2907
|
+
*/
|
|
2908
|
+
public get point(): UnityEngine.Vector3;
|
|
2909
|
+
public set point(value: UnityEngine.Vector3);
|
|
2910
|
+
/** The radius of the sphere.
|
|
2911
|
+
*/
|
|
2912
|
+
public get radius(): number;
|
|
2913
|
+
public set radius(value: number);
|
|
2914
|
+
/** The physics scene the command is run in.
|
|
2915
|
+
*/
|
|
2916
|
+
public get physicsScene(): UnityEngine.PhysicsScene;
|
|
2917
|
+
public set physicsScene(value: UnityEngine.PhysicsScene);
|
|
2918
|
+
public static ScheduleBatch ($commands: Unity.Collections.NativeArray$1<UnityEngine.OverlapSphereCommand>, $results: Unity.Collections.NativeArray$1<UnityEngine.ColliderHit>, $minCommandsPerJob: number, $maxHits: number, $dependsOn?: Unity.Jobs.JobHandle) : Unity.Jobs.JobHandle
|
|
2919
|
+
public constructor ($point: UnityEngine.Vector3, $radius: number, $queryParameters: UnityEngine.QueryParameters)
|
|
2920
|
+
public constructor ($physicsScene: UnityEngine.PhysicsScene, $point: UnityEngine.Vector3, $radius: number, $queryParameters: UnityEngine.QueryParameters)
|
|
2921
|
+
}
|
|
2922
|
+
/** Struct used to set up an overlap box command to be performed asynchronously during a job.
|
|
2923
|
+
*/
|
|
2924
|
+
class OverlapBoxCommand extends System.ValueType
|
|
2925
|
+
{
|
|
2926
|
+
protected [__keep_incompatibility]: never;
|
|
2927
|
+
/** Structure for specifying additional parameters for a batch query such as layer mask or hit triggers.
|
|
2928
|
+
*/
|
|
2929
|
+
public queryParameters : UnityEngine.QueryParameters
|
|
2930
|
+
/** The center of the box.
|
|
2931
|
+
*/
|
|
2932
|
+
public get center(): UnityEngine.Vector3;
|
|
2933
|
+
public set center(value: UnityEngine.Vector3);
|
|
2934
|
+
/** Half of the size of the box in each dimension.
|
|
2935
|
+
*/
|
|
2936
|
+
public get halfExtents(): UnityEngine.Vector3;
|
|
2937
|
+
public set halfExtents(value: UnityEngine.Vector3);
|
|
2938
|
+
/** The orientation of the box.
|
|
2939
|
+
*/
|
|
2940
|
+
public get orientation(): UnityEngine.Quaternion;
|
|
2941
|
+
public set orientation(value: UnityEngine.Quaternion);
|
|
2942
|
+
/** The physics scene this command is run in.
|
|
2943
|
+
*/
|
|
2944
|
+
public get physicsScene(): UnityEngine.PhysicsScene;
|
|
2945
|
+
public set physicsScene(value: UnityEngine.PhysicsScene);
|
|
2946
|
+
public static ScheduleBatch ($commands: Unity.Collections.NativeArray$1<UnityEngine.OverlapBoxCommand>, $results: Unity.Collections.NativeArray$1<UnityEngine.ColliderHit>, $minCommandsPerJob: number, $maxHits: number, $dependsOn?: Unity.Jobs.JobHandle) : Unity.Jobs.JobHandle
|
|
2947
|
+
public constructor ($center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $queryParameters: UnityEngine.QueryParameters)
|
|
2948
|
+
public constructor ($physicsScene: UnityEngine.PhysicsScene, $center: UnityEngine.Vector3, $halfExtents: UnityEngine.Vector3, $orientation: UnityEngine.Quaternion, $queryParameters: UnityEngine.QueryParameters)
|
|
2949
|
+
}
|
|
2950
|
+
/** Struct used to set up an overlap capsule command to be performed asynchronously during a job.
|
|
2951
|
+
*/
|
|
2952
|
+
class OverlapCapsuleCommand extends System.ValueType
|
|
2953
|
+
{
|
|
2954
|
+
protected [__keep_incompatibility]: never;
|
|
2955
|
+
/** Structure for specifying additional parameters for a batch query such as layer mask or hit triggers.
|
|
2956
|
+
*/
|
|
2957
|
+
public queryParameters : UnityEngine.QueryParameters
|
|
2958
|
+
/** The center of the sphere at the start of the capsule.
|
|
2959
|
+
*/
|
|
2960
|
+
public get point0(): UnityEngine.Vector3;
|
|
2961
|
+
public set point0(value: UnityEngine.Vector3);
|
|
2962
|
+
/** The center of the sphere at the end of the capsule.
|
|
2963
|
+
*/
|
|
2964
|
+
public get point1(): UnityEngine.Vector3;
|
|
2965
|
+
public set point1(value: UnityEngine.Vector3);
|
|
2966
|
+
/** The radius of the capsule.
|
|
2967
|
+
*/
|
|
2968
|
+
public get radius(): number;
|
|
2969
|
+
public set radius(value: number);
|
|
2970
|
+
/** The physics scene this command is run in.
|
|
2971
|
+
*/
|
|
2972
|
+
public get physicsScene(): UnityEngine.PhysicsScene;
|
|
2973
|
+
public set physicsScene(value: UnityEngine.PhysicsScene);
|
|
2974
|
+
public static ScheduleBatch ($commands: Unity.Collections.NativeArray$1<UnityEngine.OverlapCapsuleCommand>, $results: Unity.Collections.NativeArray$1<UnityEngine.ColliderHit>, $minCommandsPerJob: number, $maxHits: number, $dependsOn?: Unity.Jobs.JobHandle) : Unity.Jobs.JobHandle
|
|
2975
|
+
public constructor ($point0: UnityEngine.Vector3, $point1: UnityEngine.Vector3, $radius: number, $queryParameters: UnityEngine.QueryParameters)
|
|
2976
|
+
public constructor ($physicsScene: UnityEngine.PhysicsScene, $point0: UnityEngine.Vector3, $point1: UnityEngine.Vector3, $radius: number, $queryParameters: UnityEngine.QueryParameters)
|
|
2977
|
+
}
|
|
2978
|
+
}
|
|
2979
|
+
namespace UnityEngine.Physics {
|
|
2980
|
+
interface ContactEventDelegate
|
|
2981
|
+
{
|
|
2982
|
+
(scene: UnityEngine.PhysicsScene, headerArray: Unity.Collections.NativeArray$1.ReadOnly<UnityEngine.ContactPairHeader>) : void;
|
|
2983
|
+
Invoke?: (scene: UnityEngine.PhysicsScene, headerArray: Unity.Collections.NativeArray$1.ReadOnly<UnityEngine.ContactPairHeader>) => void;
|
|
2984
|
+
}
|
|
2985
|
+
var ContactEventDelegate: { new (func: (scene: UnityEngine.PhysicsScene, headerArray: Unity.Collections.NativeArray$1.ReadOnly<UnityEngine.ContactPairHeader>) => void): ContactEventDelegate; }
|
|
2986
|
+
}
|
|
2987
|
+
namespace UnityEngine.LowLevelPhysics {
|
|
2988
|
+
/** Holds the basic information of a geometric shape and its type.
|
|
2989
|
+
*/
|
|
2990
|
+
class GeometryHolder extends System.ValueType
|
|
2991
|
+
{
|
|
2992
|
+
protected [__keep_incompatibility]: never;
|
|
2993
|
+
/** Returns the type of the geometry shape that was saved previously.
|
|
2994
|
+
*/
|
|
2995
|
+
public get Type(): UnityEngine.LowLevelPhysics.GeometryType;
|
|
2996
|
+
public constructor ()
|
|
2997
|
+
}
|
|
2998
|
+
/** A transform, containing a position and rotation.
|
|
2999
|
+
*/
|
|
3000
|
+
class ImmediateTransform extends System.ValueType
|
|
3001
|
+
{
|
|
3002
|
+
protected [__keep_incompatibility]: never;
|
|
3003
|
+
/** The world space rotation of the object.
|
|
3004
|
+
*/
|
|
3005
|
+
public get Rotation(): UnityEngine.Quaternion;
|
|
3006
|
+
public set Rotation(value: UnityEngine.Quaternion);
|
|
3007
|
+
/** The world space position of the object.
|
|
3008
|
+
*/
|
|
3009
|
+
public get Position(): UnityEngine.Vector3;
|
|
3010
|
+
public set Position(value: UnityEngine.Vector3);
|
|
3011
|
+
}
|
|
3012
|
+
/** Describes a contact where two shapes collide.
|
|
3013
|
+
*/
|
|
3014
|
+
class ImmediateContact extends System.ValueType
|
|
3015
|
+
{
|
|
3016
|
+
protected [__keep_incompatibility]: never;
|
|
3017
|
+
/** The normal of the contact point.
|
|
3018
|
+
*/
|
|
3019
|
+
public get Normal(): UnityEngine.Vector3;
|
|
3020
|
+
public set Normal(value: UnityEngine.Vector3);
|
|
3021
|
+
/** The distance between the shapes at the contact point.
|
|
3022
|
+
*/
|
|
3023
|
+
public get Separation(): number;
|
|
3024
|
+
public set Separation(value: number);
|
|
3025
|
+
/** The position of the contact point in world space.
|
|
3026
|
+
*/
|
|
3027
|
+
public get Point(): UnityEngine.Vector3;
|
|
3028
|
+
public set Point(value: UnityEngine.Vector3);
|
|
3029
|
+
}
|
|
3030
|
+
/** This class contains methods to run the immediate simulation steps.
|
|
3031
|
+
*/
|
|
3032
|
+
class ImmediatePhysics extends System.Object
|
|
3033
|
+
{
|
|
3034
|
+
protected [__keep_incompatibility]: never;
|
|
3035
|
+
public static GenerateContacts ($geom1: Unity.Collections.NativeArray$1.ReadOnly<UnityEngine.LowLevelPhysics.GeometryHolder>, $geom2: Unity.Collections.NativeArray$1.ReadOnly<UnityEngine.LowLevelPhysics.GeometryHolder>, $xform1: Unity.Collections.NativeArray$1.ReadOnly<UnityEngine.LowLevelPhysics.ImmediateTransform>, $xform2: Unity.Collections.NativeArray$1.ReadOnly<UnityEngine.LowLevelPhysics.ImmediateTransform>, $pairCount: number, $outContacts: Unity.Collections.NativeArray$1<UnityEngine.LowLevelPhysics.ImmediateContact>, $outContactCounts: Unity.Collections.NativeArray$1<number>, $contactDistance?: number) : number
|
|
3036
|
+
}
|
|
3037
|
+
interface IGeometry
|
|
3038
|
+
{
|
|
3039
|
+
/** Return the geometry type of the shape that implemented this interface.
|
|
3040
|
+
*/
|
|
3041
|
+
GeometryType : UnityEngine.LowLevelPhysics.GeometryType
|
|
3042
|
+
}
|
|
3043
|
+
/** The set of basic geometry shape types that can exist.
|
|
3044
|
+
*/
|
|
3045
|
+
enum GeometryType
|
|
3046
|
+
{ Sphere = 0, Capsule = 2, Box = 3, ConvexMesh = 4, TriangleMesh = 5, Terrain = 6, Invalid = -1 }
|
|
3047
|
+
/** Contains the basic geometric shape of a box.
|
|
3048
|
+
*/
|
|
3049
|
+
class BoxGeometry extends System.ValueType implements UnityEngine.LowLevelPhysics.IGeometry
|
|
3050
|
+
{
|
|
3051
|
+
protected [__keep_incompatibility]: never;
|
|
3052
|
+
/** The half extents of the box shape.
|
|
3053
|
+
*/
|
|
3054
|
+
public get HalfExtents(): UnityEngine.Vector3;
|
|
3055
|
+
public set HalfExtents(value: UnityEngine.Vector3);
|
|
3056
|
+
/** Returns the geometry type of this shape, which is BoxGeometry.
|
|
3057
|
+
*/
|
|
3058
|
+
public get GeometryType(): UnityEngine.LowLevelPhysics.GeometryType;
|
|
3059
|
+
public constructor ($halfExtents: UnityEngine.Vector3)
|
|
3060
|
+
}
|
|
3061
|
+
/** Contains the basic geometric shape of a sphere.
|
|
3062
|
+
*/
|
|
3063
|
+
class SphereGeometry extends System.ValueType implements UnityEngine.LowLevelPhysics.IGeometry
|
|
3064
|
+
{
|
|
3065
|
+
protected [__keep_incompatibility]: never;
|
|
3066
|
+
/** The radius of the sphere shape.
|
|
3067
|
+
*/
|
|
3068
|
+
public get Radius(): number;
|
|
3069
|
+
public set Radius(value: number);
|
|
3070
|
+
/** Returns the geometry type of this shape, which is SphereGeometry.
|
|
3071
|
+
*/
|
|
3072
|
+
public get GeometryType(): UnityEngine.LowLevelPhysics.GeometryType;
|
|
3073
|
+
public constructor ($radius: number)
|
|
3074
|
+
}
|
|
3075
|
+
/** Contains the basic geometric shape of a capsule.
|
|
3076
|
+
*/
|
|
3077
|
+
class CapsuleGeometry extends System.ValueType implements UnityEngine.LowLevelPhysics.IGeometry
|
|
3078
|
+
{
|
|
3079
|
+
protected [__keep_incompatibility]: never;
|
|
3080
|
+
/** The radius of the half-sphere at either cap of the capsule.
|
|
3081
|
+
*/
|
|
3082
|
+
public get Radius(): number;
|
|
3083
|
+
public set Radius(value: number);
|
|
3084
|
+
/** The distance from the center of the shape to the center of either half-sphere at the caps.
|
|
3085
|
+
*/
|
|
3086
|
+
public get HalfLength(): number;
|
|
3087
|
+
public set HalfLength(value: number);
|
|
3088
|
+
/** Returns the geometry type of this shape, which is CapsuleGeometry.
|
|
3089
|
+
*/
|
|
3090
|
+
public get GeometryType(): UnityEngine.LowLevelPhysics.GeometryType;
|
|
3091
|
+
public constructor ($radius: number, $halfLength: number)
|
|
3092
|
+
}
|
|
3093
|
+
/** Contains the basic geometric shape of a convex mesh.
|
|
3094
|
+
*/
|
|
3095
|
+
class ConvexMeshGeometry extends System.ValueType implements UnityEngine.LowLevelPhysics.IGeometry
|
|
3096
|
+
{
|
|
3097
|
+
protected [__keep_incompatibility]: never;
|
|
3098
|
+
/** The scale of this geometry.
|
|
3099
|
+
*/
|
|
3100
|
+
public get Scale(): UnityEngine.Vector3;
|
|
3101
|
+
public set Scale(value: UnityEngine.Vector3);
|
|
3102
|
+
/** The rotation of the scale axis of this geometry.
|
|
3103
|
+
*/
|
|
3104
|
+
public get ScaleAxisRotation(): UnityEngine.Quaternion;
|
|
3105
|
+
public set ScaleAxisRotation(value: UnityEngine.Quaternion);
|
|
3106
|
+
/** Returns the geometry type of this shape, which is ConvexMeshGeometry.
|
|
3107
|
+
*/
|
|
3108
|
+
public get GeometryType(): UnityEngine.LowLevelPhysics.GeometryType;
|
|
3109
|
+
}
|
|
3110
|
+
/** Contains the basic geometric shape of a non-convex mesh (sometimes known as a triangle mesh).
|
|
3111
|
+
*/
|
|
3112
|
+
class TriangleMeshGeometry extends System.ValueType implements UnityEngine.LowLevelPhysics.IGeometry
|
|
3113
|
+
{
|
|
3114
|
+
protected [__keep_incompatibility]: never;
|
|
3115
|
+
/** The scale of this geometry.
|
|
3116
|
+
*/
|
|
3117
|
+
public get Scale(): UnityEngine.Vector3;
|
|
3118
|
+
public set Scale(value: UnityEngine.Vector3);
|
|
3119
|
+
/** The rotation of the scale axis of this geometry.
|
|
3120
|
+
*/
|
|
3121
|
+
public get ScaleAxisRotation(): UnityEngine.Quaternion;
|
|
3122
|
+
public set ScaleAxisRotation(value: UnityEngine.Quaternion);
|
|
3123
|
+
/** Returns the geometry type of this shape, which is TriangleMeshGeometry.
|
|
3124
|
+
*/
|
|
3125
|
+
public get GeometryType(): UnityEngine.LowLevelPhysics.GeometryType;
|
|
3126
|
+
}
|
|
3127
|
+
/** Contains the geometric shape of a Terrain collider.
|
|
3128
|
+
*/
|
|
3129
|
+
class TerrainGeometry extends System.ValueType implements UnityEngine.LowLevelPhysics.IGeometry
|
|
3130
|
+
{
|
|
3131
|
+
protected [__keep_incompatibility]: never;
|
|
3132
|
+
/** Returns the geometry type of this shape, which is TerrainGeometry.
|
|
3133
|
+
*/
|
|
3134
|
+
public get GeometryType(): UnityEngine.LowLevelPhysics.GeometryType;
|
|
3135
|
+
}
|
|
3136
|
+
}
|
|
3137
|
+
}
|