feat(parameter): populate parameterPanel

This commit is contained in:
parker
2025-07-23 19:54:40 +01:00
parent c08fd4e7e8
commit 2f3f9f09db
15 changed files with 79 additions and 22 deletions

View File

@@ -7,13 +7,17 @@ void enzo::op::OperatorTable::addOperator(const char* internalName, const char*
{
std::cout << "OPERATOR TABLE ADDED\n";
std::cout << "adding operator: " << displayName << "\n";
std::cout << "tempalate size: " << sizeof(templates) << "\n";
for(const prm::Template* t = templates; t->isValid(); ++t)
{
std::cout << "name: " << t->getName() << "\n";
}
enzo::op::OpInfo info {
internalName,
displayName,
ctorFunc,
templates,
sizeof(*templates)
};
opInfoStore_.push_back(info);