gitextract_38dpwdar/ ├── .gitignore ├── LICENSE ├── README.md ├── bundle.js ├── lib/ │ ├── Detector.js │ └── THREE.MeshLine.js ├── package.json ├── public/ │ ├── index.html │ └── static/ │ ├── app.css │ └── meshes/ │ ├── balloon.json │ ├── boat01.json │ ├── church01.json │ ├── model.json │ ├── pier01.json │ ├── plane.json │ └── tree.json ├── resources/ │ ├── balloon.fbx │ ├── blimp.lxo │ ├── church.c4d │ ├── dae/ │ │ ├── balloon.dae │ │ ├── boat01.dae │ │ ├── church01.dae │ │ ├── pier01.dae │ │ ├── plane.dae │ │ └── tree.dae │ ├── pier.blend │ ├── plane.lxo │ ├── tree.fbx │ └── tree.lxo ├── src/ │ ├── FBXLoader.js │ ├── ImprovedNoise.js │ ├── classes/ │ │ ├── bird.js │ │ ├── heightmap.js │ │ ├── mathf.js │ │ ├── player.js │ │ ├── random.js │ │ └── terrain-patch.js │ ├── index.js │ └── shaders/ │ ├── landscape_frag.glsl │ ├── landscape_vert.glsl │ ├── standard_frag.glsl │ └── standard_vert.glsl ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js