This commit is contained in:
blueloveTH 2024-05-13 20:27:47 +08:00
parent 87b3697e1c
commit d33755538a
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ class vec2:
def smooth_damp(current: vec2, target: vec2, current_velocity: vec2, smooth_time: float, max_speed: float, delta_time: float) -> tuple[vec2, vec2]:
...
class vec3(_StructLike['vec3']):
class vec3:
x: float
y: float
z: float

View File

@ -44,7 +44,7 @@ class vec2:
Returns a new value that is closer to the target and current velocity.
"""
class vec3(_StructLike['vec3']):
class vec3:
x: float
y: float
z: float