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 numpy
from numpy.linalg import norm
from random import choice, uniform, gauss
from random import uniform, gauss
from math import floor
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
class SoundBank:
def __init__(self, prefix):
self.prefix = prefix