Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions code/lab/dialogs/lab_ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1064,6 +1064,9 @@ void LabUi::maybe_show_animation_category(const SCP_vector<animation::ModelAnima
case animation::ModelAnimationTriggerType::Docked:
button_label += "Trigger Docked Animation " + std::to_string(count++);
break;
case animation::ModelAnimationTriggerType::Scripted:
button_label += "Trigger Scripted Animation " + std::to_string(count++);
break;
default:
// We really shouldn't be here, but just in case
Assertion(false, "Unexpected animation trigger type %d", static_cast<int>(trigger_type));
Expand Down