feat(settings): add a settings panel

This commit is contained in:
Halyul
2021-06-03 22:26:00 -04:00
parent 7869484ce5
commit f72ae1001c
8 changed files with 404 additions and 95 deletions

View File

@@ -33,13 +33,13 @@ class Builder:
skel=target_path + common_name + ".skel",
)
operator_file = pathlib.Path.cwd().joinpath(target_path, "..", "operator.js")
operator_file = pathlib.Path.cwd().joinpath(target_path, "..", "operator_assets.js")
if operator_file.exists() is False:
print("Building operaotr data for {}...".format(operator_name))
alpha_composite_threads = list()
png_to_base64_threads = list()
prefix = "window.operator = "
prefix = "window.operatorAssets = "
data = dict()
ar = AtlasReader(source_path + common_name, target_path + common_name)