dong shin Posted March 26, 2011 Share Posted March 26, 2011 GB_AttributeRef POP_ContextData::addUserVariable ( const char * name, int size, GB_AttribType type, const void * def, const char * local = 0 ) There is no description or example file for this. Can someone give an example? Thanks! Quote Link to comment Share on other sites More sharing options...
Scot Shinderman Posted March 27, 2011 Share Posted March 27, 2011 GB_AttributeRef POP_ContextData::addUserVariable ( const char * name, int size, GB_AttribType type, const void * def, const char * local = 0 ) There is no description or example file for this. Can someone give an example? Thanks! here's an example OP_Context &context; POP_ContextData* data = (POP_ContextData*) context.getData(); float def[4] = {0}; data->addUserVariable( "test", sizeof(float), GB_ATTRIB_FLOAT, def ); this will add a single float (as an attribute) to each particle. not sure what the last param of local is meant for -- perhaps as a default for strings? Quote Link to comment Share on other sites More sharing options...
dong shin Posted March 27, 2011 Author Share Posted March 27, 2011 Thank you so much! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.