diff --git a/objs/football.py b/objs/football.py index 061081337ef13351d42292387982fb078ded8b12..9318e8f111f5256f7ad6ca313d2a0c0c5a29b828 100644 --- a/objs/football.py +++ b/objs/football.py @@ -19,7 +19,7 @@ class Football(Obj): init_velocity=[0, 0, 0], texture="football.jpg", size_scale=1.0, distance_scale=1.0, ignore_mass=False, density=1e3, color=(7, 0, 162), - trail_color=None, show_name=False, + trail_color=None, trail_scale_factor=0.2, show_name=False, parent=None, gravity_only_for=[]): params = { "name": name, @@ -33,6 +33,7 @@ class Football(Obj): "distance_scale": distance_scale, "ignore_mass": ignore_mass, "trail_color": trail_color, + "trail_scale_factor": trail_scale_factor, "show_name": show_name, "parent": parent, "gravity_only_for": gravity_only_for, diff --git a/objs/satellite.py b/objs/satellite.py index d3e81623c925e577ce41faff683fd4adbd941519..76f733f3877d4d22c8d2e891993a09f78d837d94 100644 --- a/objs/satellite.py +++ b/objs/satellite.py @@ -20,7 +20,7 @@ class Satellite(Obj): texture="satellite.png", size_scale=1.0, distance_scale=1.0, ignore_mass=False, density=1e3, color=(7, 0, 162), trail_color=(255, 255, 255), show_name=False, - trail_scale_factor=5.0, model="satellite.obj", + trail_scale_factor=1.0, model="satellite.obj", parent=None, gravity_only_for=[]): params = { "name": name, diff --git a/simulators/ursina/entities/planet.py b/simulators/ursina/entities/planet.py index 23290830c64cd53b322da9178f23b22e4c07d31b..9fc45dac8066579d176c583035d292e9b52ee4b5 100644 --- a/simulators/ursina/entities/planet.py +++ b/simulators/ursina/entities/planet.py @@ -303,7 +303,8 @@ class Planet(Entity): if self.hovered: if key == 'left mouse down': # print(key, self) - self.show_name() + # self.show_name() + pass def show_name(self): if hasattr(self, "label_name"):