3D_Audio numeric menu fix

This commit is contained in:
2026-09-12 20:08:05 -07:00
parent cf68067343
commit 0067459e9a
11 changed files with 22 additions and 22 deletions

View File

@ -6,7 +6,7 @@ class AudioStereoPannerNode(LnxLogicTreeNode):
bl_idname = 'LNAudioStereoPannerNode'
bl_label = 'Stereo Panner'
bl_description = 'Create 2D audio Stereo Panner'
lnx_category = '3D_Audio'
lnx_category = 'Audio_3D'
lnx_version = 1
def update_input(self, context):
@ -34,5 +34,5 @@ class AudioStereoPannerNode(LnxLogicTreeNode):
layout.prop(self, 'property0')
def register():
add_category('3D_Audio', icon='SOUND')
add_category('Audio_3D', icon='SOUND')
AudioStereoPannerNode.on_register()