can anyone point me what is going wrong here :
[ just copy and paste in console ]
class Test_sett(bpy.types.IDPropertyGroup):pass
Test_sett.StringProperty(attr="username",
name="Username",
description="Username",
maxlen=64,default="")
Test_sett.StringProperty(attr="password",
name="Password",
description="Password",
maxlen=64,
default="")
bpy.types.Scene.PointerProperty(attr="competition_login_settings",
type=Test_sett,
name="Test_sett",
description="Settings")
here is the error:
Traceback (most recent call last):
File "<blender_console>", line 1, in <module>
TypeError: PointerProperty(...): expected an RNA type derived
from IDPropertyGroup, failed with: SystemError: BoolProperty(...): internal error,
self of type 'type' had no bl_rna attribute, should never happen
helping hands will be rewarded