Skip to content

Commit

Permalink
0.0.37 release; fixed imports from three.js
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyGura committed Dec 27, 2023
1 parent 99ffdae commit af7611c
Show file tree
Hide file tree
Showing 199 changed files with 7,567 additions and 1,529 deletions.
2 changes: 1 addition & 1 deletion documentation/docs/modules/ammo/ammo-debugger.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ debugMode: AmmoDebugMode
**Signature**

```ts
readonly ammoInstance: any
readonly ammoInstance: Ammo.btIDebugDraw
```

## DebugBufferSize
Expand Down
26 changes: 0 additions & 26 deletions documentation/docs/modules/ammo/ammo-utils.ts.md

This file was deleted.

13 changes: 13 additions & 0 deletions documentation/docs/modules/ammo/ammo.js/ammo-ambient.d.ts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
title: ammo/ammo.js/ammo-ambient.d.ts
nav_order: 4
parent: Modules
---

## ammo-ambient.d overview

---

<h2 class="text-delta">Table of contents</h2>

---
26 changes: 26 additions & 0 deletions documentation/docs/modules/ammo/ammo.js/ammo.d.ts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: ammo/ammo.js/ammo.d.ts
nav_order: 5
parent: Modules
---

## ammo.d overview

---

<h2 class="text-delta">Table of contents</h2>

- [utils](#utils)
- [Ammo](#ammo)

---

# utils

## Ammo

**Signature**

```ts
declare function Ammo<T>(target?: T): Promise<T & typeof Ammo>
```
9 changes: 9 additions & 0 deletions documentation/docs/modules/ammo/ammo.js/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: Modules
has_children: true
---

<h2 class="text-delta">Directory table of contents</h2>

- [ammo/ammo.js/ammo-ambient.d.ts](/gg-web-engine/modules/ammo/ammo.js/ammo-ambient.d.ts)
- [ammo/ammo.js/ammo.d.ts](/gg-web-engine/modules/ammo/ammo.js/ammo.d.ts)
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: ammo/components/ammo-body.component.ts
nav_order: 5
nav_order: 6
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: ammo/components/ammo-raycast-vehicle.component.ts
nav_order: 6
nav_order: 7
parent: Modules
---

Expand All @@ -12,7 +12,9 @@ parent: Modules

- [utils](#utils)
- [AmmoRaycastVehicleComponent (class)](#ammoraycastvehiclecomponent-class)
- [refreshCG (method)](#refreshcg-method)
- [addToWorld (method)](#addtoworld-method)
- [removeFromWorld (method)](#removefromworld-method)
- [addWheel (method)](#addwheel-method)
- [setSteering (method)](#setsteering-method)
- [applyEngineForce (method)](#applyengineforce-method)
Expand All @@ -26,6 +28,7 @@ parent: Modules
- [wheelDirectionCS0 (property)](#wheeldirectioncs0-property)
- [wheelAxleCS (property)](#wheelaxlecs-property)
- [entity (property)](#entity-property)
- [raycaster (property)](#raycaster-property)

---

Expand All @@ -41,6 +44,14 @@ export declare class AmmoRaycastVehicleComponent {
}
```

### refreshCG (method)

**Signature**

```ts
refreshCG()
```

### addToWorld (method)

**Signature**
Expand All @@ -49,6 +60,14 @@ export declare class AmmoRaycastVehicleComponent {
addToWorld(world: Gg3dWorld<VisualTypeDocRepo3D, AmmoPhysicsTypeDocRepo>)
```

### removeFromWorld (method)

**Signature**

```ts
removeFromWorld(world: Gg3dWorld<VisualTypeDocRepo3D, AmmoPhysicsTypeDocRepo>)
```

### addWheel (method)

**Signature**
Expand Down Expand Up @@ -118,31 +137,31 @@ public clone(): AmmoRaycastVehicleComponent
**Signature**

```ts
readonly nativeVehicle: any
readonly nativeVehicle: Ammo.btRaycastVehicle
```

### vehicleTuning (property)

**Signature**

```ts
readonly vehicleTuning: any
readonly vehicleTuning: Ammo.btVehicleTuning
```

### wheelDirectionCS0 (property)

**Signature**

```ts
readonly wheelDirectionCS0: any
readonly wheelDirectionCS0: Ammo.btVector3
```

### wheelAxleCS (property)

**Signature**

```ts
readonly wheelAxleCS: any
readonly wheelAxleCS: Ammo.btVector3
```

### entity (property)
Expand All @@ -152,3 +171,11 @@ readonly wheelAxleCS: any
```ts
entity: any
```

### raycaster (property)

**Signature**

```ts
readonly raycaster: Ammo.btDefaultVehicleRaycaster
```
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: ammo/components/ammo-rigid-body.component.ts
nav_order: 7
nav_order: 8
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: ammo/components/ammo-trigger.component.ts
nav_order: 8
nav_order: 9
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: ammo/components/ammo-world.component.ts
nav_order: 9
nav_order: 10
parent: Modules
---

Expand Down Expand Up @@ -98,7 +98,7 @@ dispose(): void
**Signature**

```ts
_dynamicAmmoWorld: any
_dynamicAmmoWorld: Ammo.btDiscreteDynamicsWorld | undefined
```

### lockedCollisionGroups (property)
Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/modules/ammo/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ has_children: true
- [ammo/ammo-debugger.ts](/gg-web-engine/modules/ammo/ammo-debugger.ts)
- [ammo/ammo-factory.ts](/gg-web-engine/modules/ammo/ammo-factory.ts)
- [ammo/ammo-loader.ts](/gg-web-engine/modules/ammo/ammo-loader.ts)
- [ammo/ammo-utils.ts](/gg-web-engine/modules/ammo/ammo-utils.ts)
- [ammo/ammo.js](/gg-web-engine/modules/ammo/ammo.js)
- [ammo/components](/gg-web-engine/modules/ammo/components)
- [ammo/types.ts](/gg-web-engine/modules/ammo/types.ts)
2 changes: 1 addition & 1 deletion documentation/docs/modules/ammo/types.ts.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: ammo/types.ts
nav_order: 10
nav_order: 11
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/components/physics/i-physics-world-2d.component.ts
nav_order: 11
nav_order: 12
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/components/physics/i-rigid-body-2d.component.ts
nav_order: 12
nav_order: 13
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/components/physics/i-trigger-2d.component.ts
nav_order: 13
nav_order: 14
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/components/rendering/i-display-object-2d.component.ts
nav_order: 14
nav_order: 15
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/components/rendering/i-renderer-2d.component.ts
nav_order: 15
nav_order: 16
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/components/rendering/i-visual-scene-2d.component.ts
nav_order: 16
nav_order: 17
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/entities/controllers/entity-2d-positioning.animator.ts
nav_order: 17
nav_order: 18
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/entities/entity-2d.ts
nav_order: 18
nav_order: 19
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/entities/i-renderable-2d.entity.ts
nav_order: 19
nav_order: 20
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/entities/renderer-2d.entity.ts
nav_order: 20
nav_order: 21
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/entities/trigger-2d.entity.ts
nav_order: 21
nav_order: 22
parent: Modules
---

Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/modules/core/2d/factories.ts.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/factories.ts
nav_order: 22
nav_order: 23
parent: Modules
---

Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/modules/core/2d/gg-2d-world.ts.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/gg-2d-world.ts
nav_order: 23
nav_order: 24
parent: Modules
---

Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/modules/core/2d/index.ts.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/index.ts
nav_order: 24
nav_order: 25
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/interfaces/i-positionable-2d.ts
nav_order: 25
nav_order: 26
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/models/body-options.ts
nav_order: 26
nav_order: 27
parent: Modules
---

Expand Down
2 changes: 1 addition & 1 deletion documentation/docs/modules/core/2d/models/shapes.ts.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/2d/models/shapes.ts
nav_order: 27
nav_order: 28
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/3d/components/physics/i-physics-world-3d.component.ts
nav_order: 28
nav_order: 29
parent: Modules
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: core/3d/components/physics/i-raycast-vehicle.component.ts
nav_order: 29
nav_order: 30
parent: Modules
---

Expand Down
Loading

0 comments on commit af7611c

Please sign in to comment.