Skip to content

Instantly share code, notes, and snippets.

@IARI
IARI / PointerPropertyTest.py
Last active June 16, 2018 09:06
Blender Pointerproperty Test
bl_info = {"name": "PointerProperty Test Addon", "category": "User"}
import bpy
class PointerPropertyPanel(bpy.types.Panel):
"""Creates a Panel in the Object properties window"""
bl_label = "PointerProperty TestPanel"
bl_idname = "OBJECT_PT_pointerPropTest"
bl_space_type = 'VIEW_3D'