mirror of
https://github.com/blw1138/Zordon.git
synced 2026-02-05 05:36:09 +00:00
* Add main.spec * Fix issue where fetching supported extensions would crash with no default installation
10 lines
271 B
Python
10 lines
271 B
Python
|
|
class BlenderUI:
|
|
@staticmethod
|
|
def get_options(system_info):
|
|
options = [
|
|
{'name': 'engine', 'options': system_info.get('engines', [])},
|
|
{'name': 'render_device', 'options': ['Any', 'GPU', 'CPU']},
|
|
]
|
|
return options
|