Skip to content

Commit

Permalink
0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
unconed committed Aug 29, 2014
1 parent 009cf39 commit 3e587b6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "threestrap",
"version": "0.0.8-dev",
"version": "0.0.8",
"homepage": "https://github.com/unconed/threestrap",
"description": "Minimal Three.js Bootstrapper",
"main": "build/threestrap.js",
Expand Down
8 changes: 4 additions & 4 deletions examples/multiple_renderers.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@
// Insert some text
var greeting = document.createElement( 'div' )
greeting.textContent = 'Hello World!'
greeting.style.width = '100px'
greeting.style.height = '100px'
greeting.style.fontSize = '30px'
greeting.style.width = '400px'
greeting.style.height = '400px'
greeting.style.fontSize = '120px'
greeting.style.fontFamily = 'Helvetica'
greeting.style.textAlign = 'center'
greeting.style.backfaceVisibility = 'hidden'
var greetingObject = new THREE.CSS3DObject(greeting)
greetingObject.scale.set( 0.005, 0.005, 0.005 )
greetingObject.scale.set( 0.00125, 0.00125, 0.00125 )
greetingObject.position.z = 0.25
three.scene.add(greetingObject)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "threestrap",
"version": "0.0.8-dev",
"version": "0.0.8",
"description": "Minimal Three.js Bootstrapper",
"repository": {
"type": "git",
Expand Down

0 comments on commit 3e587b6

Please sign in to comment.