-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
V1.2.3 Performance up & threading, python command line launch fixed, …
…universal object attacher, diffrent biomes, cactus's, req.txt, TestSite imit
- Loading branch information
1 parent
11029cc
commit 83632cb
Showing
7 changed files
with
114 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,34 @@ | ||
import numpy as np | ||
import pandas as pd | ||
from main.Engine2.Settings2 import * | ||
from Engine2.Settings2 import * | ||
|
||
|
||
class TestSite: | ||
def __init__(self, action="view"): | ||
self.known_actions = ["view", "import"] | ||
""" | ||
format: format_version-chunk_num_x-chunk_num_z-obj_num_x-obj_num_z-chunk_type-object_type-lighting_method | ||
details: | ||
- chunk_type -> [P: Plain, D: Desert, S: Snow] | ||
- object_type -> [T: Tree, C: Cactus] | ||
- lighting_method -> [D: Dynamic Lighting] | ||
# | ||
test_sample: | ||
- V1-S -> 1: 1-10-10-10-10-P-T-D | ||
test_method: | ||
- soft: stand still / locked FPS | ||
- normal: move around / locked FPS | ||
- hard: move around / open FPS | ||
- aggressive: move around / look around / open FPS / fast | ||
""" | ||
|
||
def __init__(self, action="view", test_sample="1", test_method="soft"): | ||
|
||
self.known_actions = ["test", "view"] | ||
self.known_settings = ["V1-S, "] | ||
|
||
if action not in self.known_actions: | ||
if ESP: | ||
print() | ||
|
||
print("action not found!") | ||
elif action == "test": | ||
pass |