This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bpy | |
from bpy.props import IntProperty, CollectionProperty, StringProperty | |
from bpy.types import Panel, UIList | |
from bpy_extras.io_utils import ImportHelper | |
import os | |
# ui list item actions | |
class Uilist_actions(bpy.types.Operator): | |
bl_idname = "custom.list_action" | |
bl_label = "List Action" |