```
fix(yaml): 添加UTF-8编码参数以正确读取YAML文件 当打开YAML文件时指定UTF-8编码,确保文件能够正确解析, 避免因编码问题导致的读取错误。 refactor(gitignore): 注释掉特定文件扩展名的忽略规则 将 *.txo.pz 和 data/**/*.txo 的忽略规则注释掉, 以便这些文件能够被纳入版本控制。 ```
This commit is contained in:
parent
8401142a14
commit
e7b0e9b88c
4
.gitignore
vendored
4
.gitignore
vendored
@ -15,7 +15,7 @@
|
||||
*.mip
|
||||
mitsuba.*.log
|
||||
*.exr
|
||||
*.txo.pz
|
||||
# *.txo.pz
|
||||
*.log
|
||||
*.tmp
|
||||
*.bak
|
||||
@ -60,7 +60,7 @@ samples/
|
||||
test_models/
|
||||
|
||||
# Generated pipeline assets
|
||||
data/**/*.txo
|
||||
# data/**/*.txo
|
||||
toolkit/**/__pycache__/
|
||||
|
||||
# --- Ignored files ---
|
||||
|
||||
BIN
data/builtin_models/skybox/skybox.txo.pz
Normal file
BIN
data/builtin_models/skybox/skybox.txo.pz
Normal file
Binary file not shown.
BIN
data/default_cubemap/cubemap.txo.pz
Normal file
BIN
data/default_cubemap/cubemap.txo.pz
Normal file
Binary file not shown.
BIN
data/default_cubemap/cubemap1.txo.pz
Normal file
BIN
data/default_cubemap/cubemap1.txo.pz
Normal file
Binary file not shown.
BIN
data/film_grain/grain.txo.pz
Normal file
BIN
data/film_grain/grain.txo.pz
Normal file
Binary file not shown.
BIN
data/gui/loading_screen_bg.txo.pz
Normal file
BIN
data/gui/loading_screen_bg.txo.pz
Normal file
Binary file not shown.
@ -28,7 +28,7 @@ def load_yaml_file(filename):
|
||||
start = time.process_time()
|
||||
|
||||
try:
|
||||
with open(filename, "r") as handle:
|
||||
with open(filename, "r",encoding='utf-8') as handle:
|
||||
parsed_yaml = yaml_load(handle, Loader=SafeLoader)
|
||||
except IOError as msg:
|
||||
RPObject.global_error("YAMLLoader", "Could not find or open file:", filename)
|
||||
|
||||
BIN
rpplugins/bloom/resources/lens_dirt.txo.pz
Normal file
BIN
rpplugins/bloom/resources/lens_dirt.txo.pz
Normal file
Binary file not shown.
BIN
rpplugins/clouds/resources/noise1-data.txo.pz
Normal file
BIN
rpplugins/clouds/resources/noise1-data.txo.pz
Normal file
Binary file not shown.
BIN
rpplugins/clouds/resources/noise2-data.txo.pz
Normal file
BIN
rpplugins/clouds/resources/noise2-data.txo.pz
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user