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,3 +7,9 @@ enzo::prm::Parameter::Parameter(Template prmTemplate)
{
std::cout << "created new parameter: " << prmTemplate.getName() << "\n";
}
std::string enzo::prm::Parameter::getName() const
{
return template_.getName();
}

View File

@@ -8,6 +8,7 @@ class Parameter
{
public:
Parameter(Template prmTemplate);
std::string getName() const;
inline bt::floatT evalFloat() const {return floatValue_;}
inline void setFloat(bt::floatT value) {floatValue_ = value;}
private: