# Maintenance hover rig with lift arm (Hover Transit and Antigrav Fleet)

A works hover rig with a turntable mounted two stage lift arm and work basket, outrigger feet, deck lockers and four repulsor pods.

- **URL:** https://3dassets.dev/assets/hover-transit-and-antigrav-fleet-maintenance-rig-lift--17887aa9
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/11456/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/hover-transit-and-antigrav-fleet-maintenance-rig-lift--17887aa9
- **Licence:** CC0 1.0 Universal: https://creativecommons.org/publicdomain/zero/1.0/ (no attribution required)
- **Contributor:** 3D Assets (@3dassets): https://3dassets.dev/u/3dassets
- **Category:** Vehicles
- **Tags:** Sci-Fi, Realistic, Exterior
- **Geometry:** 4,692 triangles, 14,076 vertices, 12 meshes, 7 materials, 0 textures
- **Size (m):** 2.96 × 4.62 × 6.02
- **Animations:** none
- **File size:** 0.22 MB
- **Downloads:** 0
- **AI used (contributor-reported):** yes; model: Claude Opus 5

## About

A maintenance hover rig, 6.02 m long, 2.96 m wide and 4.62 m tall. A lofted hull carries a glazed crew cab, a plated rear deck, side lockers, hazard strakes and a six lens light bar. A turntable at the deck centre carries a two stage articulated lift arm ending in a railed work basket. Three named nodes with pivots let the arm be posed: "boom-lower" pivoting at [0, 1.58, -0.60], "boom-upper" at [0, 3.14, 0.60] and "basket" at [0, 3.64, 2.50]. Two outrigger legs with splayed feet fold down beside the tail. Lift comes from four large repulsor pods with copper coil rings and glowing annular emitters 0.32 m above the ground and a louvred downwash vent. Parked, the rig is grounded on its ground-effect skirt loop and its outrigger feet, all resting on y=0. No wheels. Static geometry; no rig, collision or navigation data.

## Use with three.js

```js
import { GLTFLoader } from 'three/addons/loaders/GLTFLoader.js'

const loader = new GLTFLoader()
loader.load('https://cdn.3dassets.dev/assets/11456/v1/model.glb', (gltf) => {
  scene.add(gltf.scene)
})
```

## React Three Fiber

```jsx
import { useGLTF } from '@react-three/drei'

export function MaintenanceHoverRigWithLiftArmHoverTransitAndAntigravFleet(props) {
  const { scene } = useGLTF('https://cdn.3dassets.dev/assets/11456/v1/model.glb')
  return <primitive object={scene} {...props} />
}
useGLTF.preload('https://cdn.3dassets.dev/assets/11456/v1/model.glb')
```

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/11456/v1/model.glb" alt="Maintenance hover rig with lift arm (Hover Transit and Antigrav Fleet)" camera-controls auto-rotate></model-viewer>
```

## Blender

```python
# Blender 4.x: File > Import > glTF 2.0, or from the Python console after downloading the file.
import bpy
bpy.ops.import_scene.gltf(filepath='model.glb')  # from https://cdn.3dassets.dev/assets/11456/v1/model.glb
# Metres and +Y up are converted to Blender's Z-up scene automatically.
```

## Godot

```gdscript
# Godot 4: copy model.glb into res://models/ and the editor imports it as a scene.
var packed := load("res://models/model.glb") as PackedScene
var model := packed.instantiate()
add_child(model)
```

## Unity

```csharp
// Unity: import model.glb with glTFast (Package Manager: com.unity.cloud.gltfast) and drag the prefab in,
// or load it at runtime straight from the CDN:
using GLTFast;
var gltf = new GltfImport();
if (await gltf.Load("https://cdn.3dassets.dev/assets/11456/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/hover-transit-and-antigrav-fleet-maintenance-rig-lift--17887aa9 · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.