mirror of
https://github.com/Relintai/props.git
synced 2024-11-14 10:17:30 +01:00
36 lines
538 B
Python
36 lines
538 B
Python
|
|
||
|
|
||
|
def can_build(env, platform):
|
||
|
return True
|
||
|
|
||
|
|
||
|
def configure(env):
|
||
|
pass
|
||
|
|
||
|
|
||
|
def get_doc_classes():
|
||
|
return [
|
||
|
|
||
|
"GroundClutterFoliage",
|
||
|
"GroundClutter",
|
||
|
|
||
|
"PropDataEntity",
|
||
|
"PropDataEntry",
|
||
|
"PropDataLight",
|
||
|
"PropDataMesh",
|
||
|
"PropDataProp",
|
||
|
"PropDataScene",
|
||
|
"PropData",
|
||
|
|
||
|
"PropTool",
|
||
|
"PropToolEntity",
|
||
|
"PropToolLight",
|
||
|
"PropToolMesh",
|
||
|
"PropToolProp",
|
||
|
"PropToolScene",
|
||
|
]
|
||
|
|
||
|
def get_doc_path():
|
||
|
return "doc_classes"
|
||
|
|