Gems/PhysX
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -257,16 +257,16 @@ namespace PhysX
|
||||
|
||||
void ConfigStringLineEditHandler::WriteGUIValuesIntoProperty(size_t index, ConfigStringLineEditCtrl* GUI, property_t& instance, AzToolsFramework::InstanceDataNode* node)
|
||||
{
|
||||
(int)index;
|
||||
(void)node;
|
||||
AZ_UNUSED(index);
|
||||
AZ_UNUSED(node);
|
||||
AZStd::string val = GUI->Value();
|
||||
instance = static_cast<property_t>(val);
|
||||
}
|
||||
|
||||
bool ConfigStringLineEditHandler::ReadValuesIntoGUI(size_t index, ConfigStringLineEditCtrl* GUI, const property_t& instance, AzToolsFramework::InstanceDataNode* node)
|
||||
{
|
||||
(int)index;
|
||||
(void)node;
|
||||
AZ_UNUSED(index);
|
||||
AZ_UNUSED(node);
|
||||
AZStd::string val = instance;
|
||||
GUI->setValue(val);
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user