-
-
Notifications
You must be signed in to change notification settings - Fork 251
/
config.py
104 lines (89 loc) · 2.88 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# This file is for compiling as a module. It may not be used when compiling as an extension.
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.Add(BoolVariable("tracy", "Build with enabled Tracy Profiler integration", False))
env_vars.Update(env)
Help(env_vars.GenerateHelpText(env))
def get_icons_path():
return "editor/icons"
def get_doc_classes():
return [
"FastNoise2",
"VoxelAStarGrid3D",
"VoxelBlockSerializer",
"VoxelBlockyAttribute",
"VoxelBlockyAttributeAxis",
"VoxelBlockyAttributeCustom",
"VoxelBlockyAttributeDirection",
"VoxelBlockyAttributeRotation",
"VoxelBlockyLibrary",
"VoxelBlockyLibraryBase",
"VoxelBlockyModel",
"VoxelBlockyModelCube",
"VoxelBlockyModelEmpty",
"VoxelBlockyModelMesh",
"VoxelBlockyType",
"VoxelBlockyTypeLibrary",
"VoxelBoxMover",
"VoxelBuffer",
"VoxelColorPalette",
"VoxelDataBlockEnterInfo",
"VoxelEngine",
"VoxelGenerator",
"VoxelGeneratorFlat",
"VoxelGeneratorGraph",
"VoxelGeneratorHeightmap",
"VoxelGeneratorImage",
"VoxelGeneratorMultipassCB",
"VoxelGeneratorNoise",
"VoxelGeneratorNoise2D",
"VoxelGeneratorScript",
"VoxelGeneratorWaves",
"VoxelGraphFunction",
"VoxelInstanceComponent",
"VoxelInstanceGenerator",
"VoxelInstanceLibrary",
"VoxelInstanceLibraryItem",
"VoxelInstanceLibraryMultiMeshItem",
"VoxelInstanceLibrarySceneItem",
"VoxelInstancer",
"VoxelInstancerRigidBody",
"VoxelLodTerrain",
"VoxelMesher",
"VoxelMesherBlocky",
"VoxelMesherCubes",
"VoxelMesherTransvoxel",
"VoxelMeshSDF",
"VoxelModifier",
"VoxelModifierMesh",
"VoxelModifierSphere",
"VoxelNode",
"VoxelRaycastResult",
"VoxelSaveCompletionTracker",
"VoxelStream",
"VoxelStreamMemory",
"VoxelStreamRegionFiles",
"VoxelStreamScript",
"VoxelStreamSQLite",
"VoxelTerrain",
"VoxelTerrainMultiplayerSynchronizer",
"VoxelTool",
"VoxelToolBuffer",
"VoxelToolLodTerrain",
"VoxelToolMultipassGenerator",
"VoxelToolTerrain",
"VoxelViewer",
"VoxelVoxLoader",
"ZN_FastNoiseLite",
"ZN_FastNoiseLiteGradient",
"ZN_SpotNoise",
"ZN_ThreadedTask",
]
def get_doc_path():
return "doc/classes"