2 Commits

Author SHA1 Message Date
Antoine Pilote
4661c1f00e Update LICENSE 2024-12-06 22:14:24 -05:00
Antoine Pilote
b6721d036a Merge pull request #94 from antopilo/develop
Bumped to develop
2024-12-02 17:05:08 -05:00
6 changed files with 9 additions and 9 deletions

View File

@@ -2048,10 +2048,10 @@ void EditorSelectionPanel::DrawFieldTypeString(entt::meta_data& field, entt::met
std::string controlId = std::string("##") + displayName;
ImGui::InputText(controlId.c_str(), &fieldValProxy);
//if (fieldValProxy != fieldVal)
//{
// Engine::GetProject()->IsDirty = true;
//}
if (fieldValProxy != fieldVal)
{
Engine::GetProject()->IsDirty = true;
}
}
else
{

View File

@@ -1,6 +1,6 @@
MIT License
Copyright (c) 2023 Antoine Pilote
Copyright (c) 2023-2025 Antoine Pilote
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

Submodule Nuake/dependencies/vma deleted from 5a53a19894

View File

@@ -310,6 +310,7 @@ namespace Nuake
}
DESERIALIZE_VAL(DOFAutoFocus);
DESERIALIZE_VAL(DOFManualFocus);
DESERIALIZE_VAL(DOFFocalDepth);
DESERIALIZE_VAL(DOFFocalLength);
DESERIALIZE_VAL(DOFStart);

View File

@@ -55,7 +55,7 @@ namespace Nuake
float DOFFstop = 1.0f;
bool DOFAutoFocus = false;
bool DOFShowFocus = false;
bool DOFManualFocus = true;
bool DOFManualFocus = false;
int DOFSamples = 3;
int DOFrings = 3;
float DOFStart = 1.0f;

View File

@@ -84,7 +84,7 @@ bool katana_string_has_prefix(const char* str, const char* prefix)
{
size_t pre_len = strlen(prefix);
size_t str_len = strlen(str);
return pre_len <= str_len && stricmp(prefix, str);
return pre_len <= str_len && stricmp(prefix, str, pre_len);
}
void katana_string_to_lowercase(struct KatanaInternalParser* parser,