forked from Zylann/godot_voxel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
81 lines (68 loc) · 2.05 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
def can_build(env, platform):
return True
def configure(env):
from SCons.Script import BoolVariable, Variables, Help
env_vars = Variables()
env_vars.Add(BoolVariable("voxel_tests",
"Build with tests for the voxel module, which will run on startup of the engine", False))
env_vars.Add(BoolVariable("voxel_fast_noise_2", "Build FastNoise2 support (x86-only)", True))
env_vars.Update(env)
Help(env_vars.GenerateHelpText(env))
def get_icons_path():
return "editor/icons"
def get_doc_classes():
return [
"FastNoise2",
"VoxelBlockSerializer",
"VoxelBlockyLibrary",
"VoxelBlockyModel",
"VoxelBoxMover",
"VoxelBuffer",
"VoxelColorPalette",
"VoxelDataBlockEnterInfo",
"VoxelEngine",
"VoxelGenerator",
"VoxelGeneratorFlat",
"VoxelGeneratorGraph",
"VoxelGeneratorHeightmap",
"VoxelGeneratorImage",
"VoxelGeneratorNoise",
"VoxelGeneratorNoise2D",
"VoxelGeneratorScript",
"VoxelGeneratorWaves",
"VoxelInstanceComponent",
"VoxelInstanceGenerator",
"VoxelInstanceLibrary",
"VoxelInstanceLibraryItem",
"VoxelInstanceLibraryMultiMeshItem",
"VoxelInstanceLibrarySceneItem",
"VoxelInstancer",
"VoxelLodTerrain",
"VoxelMesher",
"VoxelMesherBlocky",
"VoxelMesherCubes",
"VoxelMesherDMC",
"VoxelMesherTransvoxel",
"VoxelMeshSDF",
"VoxelModifier",
"VoxelModifierMesh",
"VoxelModifierSphere",
"VoxelNode",
"VoxelRaycastResult",
"VoxelStream",
"VoxelStreamRegionFiles",
"VoxelStreamScript",
"VoxelStreamSQLite",
"VoxelTerrain",
"VoxelTool",
"VoxelToolBuffer",
"VoxelToolLodTerrain",
"VoxelToolTerrain",
"VoxelViewer",
"VoxelVoxLoader",
"ZN_FastNoiseLite",
"ZN_FastNoiseLiteGradient",
"ZN_ThreadedTask",
]
def get_doc_path():
return "doc/classes"