luboslenco 2 anos atrás
pai
commit
885f40a5ce

+ 0 - 25
Assets/licenses/plugins/license_texsynth.md

@@ -1,25 +0,0 @@
-Copyright (c) 2019 Embark Studios
-
-Permission is hereby granted, free of charge, to any
-person obtaining a copy of this software and associated
-documentation files (the "Software"), to deal in the
-Software without restriction, including without
-limitation the rights to use, copy, modify, merge,
-publish, distribute, sublicense, and/or sell copies of
-the Software, and to permit persons to whom the Software
-is furnished to do so, subject to the following
-conditions:
-
-The above copyright notice and this permission notice
-shall be included in all copies or substantial portions
-of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
-ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
-TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
-PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
-SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
-IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-DEALINGS IN THE SOFTWARE.

+ 0 - 1
Sources/arm/Enums.hx

@@ -17,7 +17,6 @@ package arm;
 
 @:enum abstract SpaceType(Int) from Int to Int {
 	var SpacePaint = 0;
-	// var SpaceSculpt = 0;
 	var SpaceMaterial = 1;
 	var SpaceBake = 2;
 }

+ 0 - 1
Sources/arm/Strings.hx

@@ -5,7 +5,6 @@ class Strings {
 	public static function error1(): String { return tr("Error: Unknown asset format"); }
 	public static function error2(): String { return tr("Error: Could not locate texture"); }
 	public static function error3(): String { return tr("Error: Failed to read mesh data"); }
-	// public static function error4(): String { return tr("Error: Mesh has no UVs, generating defaults"); }
 	public static function error5(): String { return tr("Error: Check internet connection to access the cloud"); }
 	public static function info0(): String { return tr("Info: Asset already imported"); }
 }

+ 3 - 3
khafile.js

@@ -17,10 +17,10 @@ project.addSources("Sources");
 project.addLibrary("iron");
 project.addLibrary("zui");
 project.addLibrary("armorbase");
-project.addShaders("Shaders/*.glsl", { embed: snapshot});
-project.addShaders("armorcore/Shaders/*.glsl", { embed: snapshot});
+project.addShaders("Shaders/*.glsl", { embed: snapshot });
+project.addShaders("armorcore/Shaders/*.glsl", { embed: snapshot });
 project.addAssets("Assets/*", { destination: "data/{name}", embed: snapshot });
-project.addShaders("Libraries/armorbase/Shaders/common/*.glsl", { embed: snapshot});
+project.addShaders("Libraries/armorbase/Shaders/common/*.glsl", { embed: snapshot });
 project.addAssets("Libraries/armorbase/Assets/common/*", { destination: "data/{name}", embed: snapshot });
 if (!snapshot) {
 	project.addDefine("arm_noembed");