mirror of
https://github.com/antopilo/Nuake.git
synced 2026-01-02 09:48:32 +03:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
076960c41d | ||
|
|
2898a6f5b0 | ||
|
|
f1a36c495d |
@@ -2048,10 +2048,10 @@ void EditorSelectionPanel::DrawFieldTypeString(entt::meta_data& field, entt::met
|
|||||||
std::string controlId = std::string("##") + displayName;
|
std::string controlId = std::string("##") + displayName;
|
||||||
ImGui::InputText(controlId.c_str(), &fieldValProxy);
|
ImGui::InputText(controlId.c_str(), &fieldValProxy);
|
||||||
|
|
||||||
if (fieldValProxy != fieldVal)
|
//if (fieldValProxy != fieldVal)
|
||||||
{
|
//{
|
||||||
Engine::GetProject()->IsDirty = true;
|
// Engine::GetProject()->IsDirty = true;
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
4
LICENSE
4
LICENSE
@@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2023-2025 Antoine Pilote
|
Copyright (c) 2023 Antoine Pilote
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
1
Nuake/dependencies/vma
Submodule
1
Nuake/dependencies/vma
Submodule
Submodule Nuake/dependencies/vma added at 5a53a19894
@@ -310,7 +310,6 @@ namespace Nuake
|
|||||||
}
|
}
|
||||||
|
|
||||||
DESERIALIZE_VAL(DOFAutoFocus);
|
DESERIALIZE_VAL(DOFAutoFocus);
|
||||||
DESERIALIZE_VAL(DOFManualFocus);
|
|
||||||
DESERIALIZE_VAL(DOFFocalDepth);
|
DESERIALIZE_VAL(DOFFocalDepth);
|
||||||
DESERIALIZE_VAL(DOFFocalLength);
|
DESERIALIZE_VAL(DOFFocalLength);
|
||||||
DESERIALIZE_VAL(DOFStart);
|
DESERIALIZE_VAL(DOFStart);
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ namespace Nuake
|
|||||||
float DOFFstop = 1.0f;
|
float DOFFstop = 1.0f;
|
||||||
bool DOFAutoFocus = false;
|
bool DOFAutoFocus = false;
|
||||||
bool DOFShowFocus = false;
|
bool DOFShowFocus = false;
|
||||||
bool DOFManualFocus = false;
|
bool DOFManualFocus = true;
|
||||||
int DOFSamples = 3;
|
int DOFSamples = 3;
|
||||||
int DOFrings = 3;
|
int DOFrings = 3;
|
||||||
float DOFStart = 1.0f;
|
float DOFStart = 1.0f;
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ bool katana_string_has_prefix(const char* str, const char* prefix)
|
|||||||
{
|
{
|
||||||
size_t pre_len = strlen(prefix);
|
size_t pre_len = strlen(prefix);
|
||||||
size_t str_len = strlen(str);
|
size_t str_len = strlen(str);
|
||||||
return pre_len <= str_len && stricmp(prefix, str, pre_len);
|
return pre_len <= str_len && stricmp(prefix, str);
|
||||||
}
|
}
|
||||||
|
|
||||||
void katana_string_to_lowercase(struct KatanaInternalParser* parser,
|
void katana_string_to_lowercase(struct KatanaInternalParser* parser,
|
||||||
|
|||||||
Reference in New Issue
Block a user