提交 473a2344 编写于 作者: 三月三net's avatar 三月三net

Python超人-宇宙模拟器

上级 1d2fd94d
......@@ -231,7 +231,7 @@ class Body(metaclass=ABCMeta):
停止运动,将加速度和速度置零
@return:
"""
self.init_velocity = [0.0, 0.0, 0.0]
self.velocity = [0.0, 0.0, 0.0]
self.acceleration = [0.0, 0.0, 0.0]
def stop_and_ignore_gravity(self):
......
......@@ -64,9 +64,13 @@ if __name__ == '__main__':
# 如果抛出物与地球相碰撞了,则静止不动(抛出物停止并忽略引力)
obj.stop_and_ignore_gravity()
def on_reset():
for obj in [obj0, obj1, obj2, obj3]:
obj.ignore_mass = False
# 订阅计时器事件(定时触发)
UrsinaEvent.on_timer_changed_subscription(on_timer_changed)
UrsinaEvent.on_reset_subscription(on_reset)
# 使用 ursina 查看的运行效果
# 常用快捷键: P:运行和暂停 O:重新开始 I:显示天体轨迹
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册