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 AudioLoadNode(LnxLogicTreeNode):
bl_idname = 'LNAudioLoadNode'
bl_label = 'Load Audio'
bl_description = 'Load audio'
lnx_category = '3D_Audio'
lnx_category = 'Audio_3D'
lnx_version = 1
def update_input(self, context):
@ -39,5 +39,5 @@ class AudioLoadNode(LnxLogicTreeNode):
#col.prop_search(self, 'property0', bpy.data, 'sounds', icon='NONE', text='')
def register():
add_category('3D_Audio', icon='SOUND')
add_category('Audio_3D', icon='SOUND')
AudioLoadNode.on_register()