Skip to content

Instantly share code, notes, and snippets.

@glurp
Created September 28, 2018 13:40
Show Gist options
  • Save glurp/1e9f0048b47463d360b0506875f042ce to your computer and use it in GitHub Desktop.
Save glurp/1e9f0048b47463d360b0506875f042ce to your computer and use it in GitHub Desktop.
Simple WhitestormJS app
const app = new WHS.App([
new WHS.ElementModule({
container: document.getElementById('app')
}),
new WHS.SceneModule(),
new WHS.CameraModule({
position: {
y: 10,
z: 50
}
}),
new WHS.RenderingModule({
bgColor: 0x162129,
renderer: {
antialias: true,
shadowmap: {
type: THREE.PCFSoftShadowMap
}
}
}, {shadow: true}),
new WHS.OrbitControlsModule(),
new WHS.ResizeModule()
]);
// Sphere
const sphere = new WHS.Sphere({ // Create sphere comonent.
geometry: {
radius: 5,
widthSegments: 32,
heightSegments: 32
},
material: new THREE.MeshPhongMaterial({
color: 0xF2F2F2
}),
position: new THREE.Vector3(0, 5, 0)
});
sphere.addTo(app);
// Plane
new WHS.Plane({
geometry: {
width: 100,
height: 100
},
material: new THREE.MeshPhongMaterial({color: 0x447F8B}),
rotation: {
x: -Math.PI / 2
}
}).addTo(app);
// Lights
new WHS.PointLight({
light: {
intensity: 0.5,
distance: 100
},
shadow: {
fov: 90
},
position: new THREE.Vector3(0, 10, 10)
}).addTo(app);
new WHS.AmbientLight({
light: {
intensity: 0.4
}
}).addTo(app);
// Start the app
app.start();
<script src="https://res.cloudinary.com/da3amwstb/raw/upload/v1486032086/BasicSphere_naxbbf.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/84/three.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/whitestorm.js/2.0.0-beta.9.1/whitestorm.js"></script>
/* For ResizeModule */
html, body {
position: relative;
height: 100%;
}
#app {
width: 100%;
height: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment