Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' of https://github.com/armory3d/armsdk
Browse files Browse the repository at this point in the history
  • Loading branch information
luboslenco committed Feb 1, 2023
2 parents d5bf8e3 + 1306cc6 commit f362332
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions armory.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,13 @@ def html5_copy_path_update(self, context):
ffmpeg_path: StringProperty(name="FFMPEG Path", description="Binary path", subtype="FILE_PATH", update=ffmpeg_path_update, default="")
save_on_build: BoolProperty(name="Save on Build", description="Save .blend", default=False)
open_build_directory: BoolProperty(name="Open Build Directory After Publishing", description="Open the build directory after successfully publishing the project", default=False)
cmft_use_opencl: BoolProperty(
name="CMFT: Use OpenCL", default=True,
description=(
"Whether to use OpenCL processing to generate radiance maps with CMFT."
" If you experience extremely long build times caused by CMFT, try disabling this option."
" For more information see https://github.com/armory3d/armory/issues/2760"
))
legacy_shaders: BoolProperty(name="Legacy Shaders", description="Attempt to compile shaders runnable on older hardware, use this for WebGL1 or GLES2 support in mobile render path", default=False)
relative_paths: BoolProperty(name="Generate Relative Paths", description="Write relative paths in khafile", default=False)
viewport_controls: EnumProperty(
Expand Down Expand Up @@ -397,6 +404,9 @@ def draw(self, context):
box.prop(self, "open_build_directory")
box.prop(self, "save_on_build")

box.separator()
box.prop(self, "cmft_use_opencl")

box = box_main.column()
box.label(text="Android Settings")
box.prop(self, "android_sdk_root_path")
Expand Down

0 comments on commit f362332

Please sign in to comment.