forked from mirror/ObjToSchematic
Initial 0.8 branch commit
This commit is contained in:
parent
22b0656fd4
commit
39693c2a42
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "objtoschematic",
|
"name": "objtoschematic",
|
||||||
"version": "0.7.0",
|
"version": "0.8.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "objtoschematic",
|
"name": "objtoschematic",
|
||||||
"version": "0.7.0",
|
"version": "0.8.0",
|
||||||
"license": "BSD-3-Clause",
|
"license": "BSD-3-Clause",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bvh-tree": "^1.0.1",
|
"bvh-tree": "^1.0.1",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "objtoschematic",
|
"name": "objtoschematic",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.7.0",
|
"version": "0.8.0",
|
||||||
"description": "A tool to convert .obj files into voxels and then into Minecraft Schematic files",
|
"description": "A tool to convert .obj files into voxels and then into Minecraft Schematic files",
|
||||||
"main": "./dist/src/main.js",
|
"main": "./dist/src/main.js",
|
||||||
"engines": {
|
"engines": {
|
||||||
|
@ -40,8 +40,8 @@ export class AppConfig {
|
|||||||
public readonly FRESNEL_MIX: number;
|
public readonly FRESNEL_MIX: number;
|
||||||
|
|
||||||
private constructor() {
|
private constructor() {
|
||||||
this.RELEASE_MODE = true;
|
this.RELEASE_MODE = false;
|
||||||
this.RELEASE_VERSION = '0.7.0r';
|
this.RELEASE_VERSION = '0.8.0d';
|
||||||
this.VOXEL_BUFFER_CHUNK_SIZE = 5_000;
|
this.VOXEL_BUFFER_CHUNK_SIZE = 5_000;
|
||||||
|
|
||||||
const configFile = fs.readFileSync(PathUtil.join(AppPaths.Get.resources, 'config.json'), 'utf8');
|
const configFile = fs.readFileSync(PathUtil.join(AppPaths.Get.resources, 'config.json'), 'utf8');
|
||||||
|
Loading…
Reference in New Issue
Block a user