deathcap
deathcap
Reproduced with isolated voxel-example: https://github.com/deathcap/voxel-example/tree/5e8ed535f8418e816001c8f14d4f3dcb858360aa previously was using cwise 1.0.4 circa 2014, https://github.com/scijs/cwise/commits/master - https://github.com/scijs/cwise#notes documents "All input arrays must have the same shape. If not, then the library will...
Pinning cwise-compiler to 1.0.0 (package.json: "cwise-compiler": "1.0.0" — instead of "^1.0.0") gets past this error, but then the same problem occurs in ops.assign() in voxel-mesher splitVoxelArray(). ndarray-ops 1.2.2, but then...
cwise-compiler 1.1.0 is compatible, sticking on it for now (voxel-mesher 0.14.3 bugfix release), but may want to revisit to upgrade to a newer version. The problem is voxel-mesher relies on...
@EtherTyper Agreed, also related: https://github.com/voxel/voxel-engine-stackgl/issues/9. Lerna looks promising, or some kind of monorepo. I did write and use this tool to help manage committing updates to module dependencies: https://github.com/deathcap/lmno-cl but...
With your changes, I do see something at http://localhost:13333/ (ran extract_textures.js on 1.8.9, using Safari 9.0.2 on OS X 10.11.2): 
Block -> texture data is in resource packs or the client jar, path `models/block`, example models/block/crafting_table.json: ``` json { "parent": "block/cube", "textures": { "particle": "blocks/crafting_table_front", "down": "blocks/planks_oak", "up": "blocks/crafting_table_top", "north":...
The engine from https://github.com/deathcap/voxpopuli is now available in: https://github.com/voxel/voxel-engine-stackgl
Just hit this issue myself, proposed this fix in static-eval: https://github.com/substack/static-eval/pull/12 Fix exception instead of failure when parsing CallExpressions The unbrowserifable (or more accurately, unbrfs-able, since static-eval chokes) code is...
If using the jison API, then the unbrowserifiable code can be omitted by passing an alternate `mainModule` function to the generation options, for example: ``` javascript var Parser = require('jison').Parser;...
Looks like this is specific to iframes at a certain angle in Chrome. Renders OK: ``` html ``` rotating slightly, iframe becomes invisible: ``` html ``` changing iframe to div,...