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
5 changes: 2 additions & 3 deletions jme3-core/src/main/java/com/jme3/animation/LoopMode.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2021 jMonkeyEngine
* Copyright (c) 2009-2025 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -35,7 +35,6 @@
* <code>LoopMode</code> determines how animations repeat, or if they
* do not repeat.
*/
@Deprecated
public enum LoopMode {
/**
* The animation will play repeatedly, when it reaches the end
Expand All @@ -55,6 +54,6 @@ public enum LoopMode {
* animation will play backwards from the last frame until it reaches
* the first frame.
*/
Cycle,
Cycle

}