movement: don't need int in ScalarTypes twice
This commit is contained in:
parent
a79b2dff0b
commit
d73c9c1a91
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ import math
|
||||||
|
|
||||||
class PyVec3:
|
class PyVec3:
|
||||||
Epsilon = 0.0001
|
Epsilon = 0.0001
|
||||||
ScalarTypes = (float, int, int)
|
ScalarTypes = (float, int)
|
||||||
|
|
||||||
def __init__(self, *args):
|
def __init__(self, *args):
|
||||||
self.assign(*args)
|
self.assign(*args)
|
||||||
|
|
Loading…
Reference in a new issue