浏览代码

Remove culling distance, there are lods with culling distance now.

clementlandrin 3 月之前
父节点
当前提交
10432fbbcc
共有 3 个文件被更改,包括 0 次插入3 次删除
  1. 0 1
      hide/Config.hx
  2. 0 1
      hide/tools/IdeData.hx
  3. 0 1
      hide/view/settings/UserSettings.hx

+ 0 - 1
hide/Config.hx

@@ -28,7 +28,6 @@ typedef HideGlobalConfig = {
 
 
 	// Performance
 	// Performance
 	var trackGpuAlloc : Bool;
 	var trackGpuAlloc : Bool;
-	var cullingDistanceFactor : Float;
 
 
 	// CDB
 	// CDB
 	var highlightActiveLine : Bool;
 	var highlightActiveLine : Bool;

+ 0 - 1
hide/tools/IdeData.hx

@@ -23,7 +23,6 @@ class IdeData {
 		"typingDebounceThreshold" => 300,
 		"typingDebounceThreshold" => 300,
 		"autoSavePrefab" => false,
 		"autoSavePrefab" => false,
 		"trackGpuAlloc" => false,
 		"trackGpuAlloc" => false,
-		"cullingDistanceFactor" => 100,
 		"svnShowVersionedFiles" => true,
 		"svnShowVersionedFiles" => true,
 		"svnShowModifiedFiles" => true,
 		"svnShowModifiedFiles" => true,
 	];
 	];

+ 0 - 1
hide/view/settings/UserSettings.hx

@@ -19,7 +19,6 @@ class UserSettings extends Settings {
 
 
 		var performance = new hide.view.settings.Settings.Categorie("Performance");
 		var performance = new hide.view.settings.Settings.Categorie("Performance");
 		performance.add("Track gpu alloc", new Element('<input type="checkbox"/>'), Ide.inst.ideConfig.trackGpuAlloc, (v) -> Ide.inst.ideConfig.trackGpuAlloc = v);
 		performance.add("Track gpu alloc", new Element('<input type="checkbox"/>'), Ide.inst.ideConfig.trackGpuAlloc, (v) -> Ide.inst.ideConfig.trackGpuAlloc = v);
-		performance.add("Culling distance factor", new Element('<input type="number"/>'), Ide.inst.ideConfig.cullingDistanceFactor, (v) -> Ide.inst.ideConfig.cullingDistanceFactor = v);
 		categories.push(performance);
 		categories.push(performance);
 
 
 		var cdb = new hide.view.settings.Settings.Categorie("CDB");
 		var cdb = new hide.view.settings.Settings.Categorie("CDB");