summaryrefslogtreecommitdiff
path: root/ui.cpp
diff options
context:
space:
mode:
authorFox Caminiti <fox@foxcam.net>2022-08-15 10:08:07 -0400
committerFox Caminiti <fox@foxcam.net>2022-08-15 10:08:07 -0400
commit67898c6505c9180b5a5a31457f11d29b41fa91ba (patch)
tree16a472797ce22ec8645a04bbbe9167990e6081da /ui.cpp
parent7cfb7ce652d1c13ab72392d95dc93d967bf505fb (diff)
fixes
Diffstat (limited to 'ui.cpp')
-rw-r--r--ui.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/ui.cpp b/ui.cpp
deleted file mode 100644
index 04b9002..0000000
--- a/ui.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-static void
-InteractProperty(int16 Index, project_data *File, project_state *State, bool32 Ended, real32 Value, memory *Memory, cache_pool *Cache)
-{
- for (int r = 0; r < State->NumberOfSelectedLayers; r++) {
- keyframe *Keyframe = InsertKeyframeAtFrame(&File->LayerPTR[State->SelectedLayerIndex[r]]->Property[Index], *State, File->CurrentFrame, Memory, Cache);
- Keyframe->Value.f += Value;
- }
- // Cache->Interact = Active;
- // Cache->InteractIndex = State->SelectedLayerIndex[0];
- if (Ended)
- {
- State->TranslateScaleRotate = 0;
- Cache->Interact = Clear;
- }
- State->UpdateFrame = true;
- // Cache->Frame[File->CurrentFrame].Cached = false;
-}