hello, i tried to insert some icon in an enumproperty
test_context: bpy.props.EnumProperty(
name = 'Context',
description = '',
items = [
('GENERAL', 'General', '', icon='BLENDER'),
('FILEPATHS', 'File Paths', '', icon='KEYINGSET')],
default = 'GENERAL')
this is obviously not working and i didnt saw any example out there, nothing in the documentation either.
does someone here know how to do this ? is this even possible ?
original
test_context: bpy.props.EnumProperty(
name = 'Context',
description = '',
items = [
('GENERAL', 'General', '', icon='BLENDER'),
('FILEPATHS', 'File Paths', '', icon='KEYINGSET')],
default = 'GENERAL')