Skip to content

User Interfaces Merge - #57

Merged
CDevv merged 75 commits into
mainfrom
user-interfaces
Jul 18, 2026
Merged

User Interfaces Merge#57
CDevv merged 75 commits into
mainfrom
user-interfaces

Conversation

@CDevv

@CDevv CDevv commented Jul 18, 2026

Copy link
Copy Markdown
Collaborator

No description provided.

CDevv and others added 30 commits April 23, 2026 19:10
Thefirey33 and others added 23 commits July 9, 2026 19:06
experimental action history for UI Element properties
…into user-interfaces

Merging Viet translation
@CDevv CDevv linked an issue Jul 18, 2026 that may be closed by this pull request
Comment thread src/interfaceView.cpp Fixed
Comment thread src/tween.cpp

float outQuad(float t) { return 1 - (1 - t) * (1 - t); }

float inOutQuad(float t) { return t < 0.5f ? 2 * t * t : 1 - std::pow(-2 * t + 2, 2) / 2; }
Comment thread src/tween.cpp

float outCubic(float t) { return 1 - std::pow(1 - t, 3); }

float inOutCubic(float t) { return t < 0.5f ? 4 * t * t * t : 1 - std::pow(-2 * t + 2, 3) / 2; }
Comment thread src/tween.cpp

float outQuart(float t) { return 1 - std::pow(1 - t, 4); }

float inOutQuart(float t) { return t < 0.5f ? 8 * t * t * t * t : 1 - std::pow(-2 * t + 2, 4) / 2; }
Comment thread src/tween.cpp Fixed
CDevv and others added 2 commits July 18, 2026 12:11
… type with wide type in loop condition'

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
…t converted to larger type'

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Comment thread src/tween.cpp Dismissed
@CDevv
CDevv merged commit 28cc852 into main Jul 18, 2026
5 of 6 checks passed
@CDevv
CDevv deleted the user-interfaces branch July 18, 2026 10:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

In-Game User Interfaces

4 participants