Skip to content

Commit

Permalink
Merge branch 'CSS-Approach'
Browse files Browse the repository at this point in the history
  • Loading branch information
Hunter John Larco committed Jan 20, 2016
2 parents 495b856 + 6255960 commit 5e00419
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dist/voxelcss.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

90 changes: 90 additions & 0 deletions src/ext/Meshes.js
@@ -0,0 +1,90 @@
(function(){

if(!window.voxelcss) window.voxelcss = {};

voxelcss.Meshes = {

dirt: {
'top' : 'http://voxelcss.com/res/dirt/main.png',
'bottom' : 'http://voxelcss.com/res/dirt/main.png',
'front' : 'http://voxelcss.com/res/dirt/main.png',
'back' : 'http://voxelcss.com/res/dirt/main.png',
'left' : 'http://voxelcss.com/res/dirt/main.png',
'right' : 'http://voxelcss.com/res/dirt/main.png'
},

grass: {
'top' : 'http://voxelcss.com/res/grass/top.png',
'bottom' : 'http://voxelcss.com/res/grass/bottom.png',
'front' : 'http://voxelcss.com/res/grass/side.png',
'back' : 'http://voxelcss.com/res/grass/side.png',
'left' : 'http://voxelcss.com/res/grass/side.png',
'right' : 'http://voxelcss.com/res/grass/side.png'
},

water: {
'top' : 'http://voxelcss.com/res/water/main.png',
'bottom' : 'http://voxelcss.com/res/water/main.png',
'front' : 'http://voxelcss.com/res/water/main.png',
'back' : 'http://voxelcss.com/res/water/main.png',
'left' : 'http://voxelcss.com/res/water/main.png',
'right' : 'http://voxelcss.com/res/water/main.png'
},

waterFall: {
'top' : 'http://voxelcss.com/res/water/main.png',
'bottom' : 'http://voxelcss.com/res/water/main.png',
'front' : 'http://voxelcss.com/res/water/fall.png',
'back' : 'http://voxelcss.com/res/water/fall.png',
'left' : 'http://voxelcss.com/res/water/fall.png',
'right' : 'http://voxelcss.com/res/water/fall.png'
},

waterFallTop: {
'top' : 'http://voxelcss.com/res/water/main.png',
'bottom' : 'http://voxelcss.com/res/water/main.png',
'front' : 'http://voxelcss.com/res/water/falltop.png',
'back' : 'http://voxelcss.com/res/water/falltop.png',
'left' : 'http://voxelcss.com/res/water/falltop.png',
'right' : 'http://voxelcss.com/res/water/falltop.png'
},

waterFallCrash: {
'top' : 'http://voxelcss.com/res/water/main.png',
'bottom' : 'http://voxelcss.com/res/water/main.png',
'front' : 'http://voxelcss.com/res/water/crash.png',
'back' : 'http://voxelcss.com/res/water/crash.png',
'left' : 'http://voxelcss.com/res/water/crash.png',
'right' : 'http://voxelcss.com/res/water/crash.png'
},

cloud: {
'top' : 'http://voxelcss.com/res/cloud/main.png',
'bottom' : 'http://voxelcss.com/res/cloud/main.png',
'front' : 'http://voxelcss.com/res/cloud/main.png',
'back' : 'http://voxelcss.com/res/cloud/main.png',
'left' : 'http://voxelcss.com/res/cloud/main.png',
'right' : 'http://voxelcss.com/res/cloud/main.png'
},

treeTrunk: {
'top' : 'http://voxelcss.com/res/tree/rings.png',
'bottom' : 'http://voxelcss.com/res/tree/rings.png',
'front' : 'http://voxelcss.com/res/tree/bark.png',
'back' : 'http://voxelcss.com/res/tree/bark.png',
'left' : 'http://voxelcss.com/res/tree/bark.png',
'right' : 'http://voxelcss.com/res/tree/bark.png'
},

treeLeaves: {
'top' : 'http://voxelcss.com/res/tree/leaves.png',
'bottom' : 'http://voxelcss.com/res/tree/leaves.png',
'front' : 'http://voxelcss.com/res/tree/leaves.png',
'back' : 'http://voxelcss.com/res/tree/leaves.png',
'left' : 'http://voxelcss.com/res/tree/leaves.png',
'right' : 'http://voxelcss.com/res/tree/leaves.png'
}

}

})();

0 comments on commit 5e00419

Please sign in to comment.