From 3eed0ee8583736926be7885526bdbd84064404f2 Mon Sep 17 00:00:00 2001 From: Yanis42 <35189056+Yanis42@users.noreply.github.com> Date: Tue, 9 Jan 2024 14:24:40 +0100 Subject: [PATCH] Fix OoT UI showing in SM64 #286 --- fast64_internal/oot/cutscene/motion/panels.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fast64_internal/oot/cutscene/motion/panels.py b/fast64_internal/oot/cutscene/motion/panels.py index 660187319..a2018fed4 100644 --- a/fast64_internal/oot/cutscene/motion/panels.py +++ b/fast64_internal/oot/cutscene/motion/panels.py @@ -1,9 +1,9 @@ -from bpy.types import Panel from bpy.utils import register_class, unregister_class +from ....panels import OOT_Panel from .properties import CutsceneCmdCameraShotProperty, CutsceneCmdCameraShotPointProperty -class OOT_CSMotionCameraShotPanel(Panel): +class OOT_CSMotionCameraShotPanel(OOT_Panel): bl_label = "Cutscene Motion Camera Shot Controls" bl_idname = "OOT_PT_camera_shot_panel" bl_space_type = "PROPERTIES"