Fixed missing imports

This commit is contained in:
Jamie Hardt
2020-09-19 22:34:36 -07:00
parent c5c0ab951d
commit dd894bbeb1
2 changed files with 7 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
import bpy import bpy
import numpy import numpy
from numpy.linalg import norm from numpy.linalg import norm
from random import choice, uniform, gauss from random import uniform, gauss
from math import floor from math import floor
from enum import IntFlag, Enum from enum import IntFlag, Enum

View File

@@ -1,7 +1,12 @@
from typing import List import bpy
import numpy
from typing import List
from random import choice
from aud import Sound from aud import Sound
class SoundBank: class SoundBank:
def __init__(self, prefix): def __init__(self, prefix):
self.prefix = prefix self.prefix = prefix