提交 40f623b2 编写于 作者: 三月三net's avatar 三月三net

Python超人-宇宙模拟器

上级 a2b3e400
......@@ -65,7 +65,14 @@ class FixedStar(Body):
if not os.path.exists(temp_dir):
os.mkdir(temp_dir)
save_file = os.path.join(temp_dir, "fixed_star_%s.png" % str(self.__class__.__name__).lower())
texture_name = os.path.basename(texture). \
replace(".", "_").replace("/", "_"). \
replace("\\", "_").replace("__", "_")
# save_file = os.path.join(temp_dir, "%s_%s.png" % (texture_name, "_".join([str(i) for i in list(self.color)])))
save_file = os.path.join(temp_dir, "%s_%s.png" % (texture_name, str(self.__class__.__name__).lower()))
if os.path.exists(save_file):
return save_file
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册