We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43fead7 commit 13d8ebeCopy full SHA for 13d8ebe
jme3-core/src/main/java/com/jme3/cinematic/events/MotionEvent.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2009-2021 jMonkeyEngine
+ * Copyright (c) 2009-2025 jMonkeyEngine
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
@@ -312,6 +312,9 @@ public Object jmeClone() {
312
313
@Override
314
public void cloneFields(Cloner cloner, Object original) {
315
+ this.lookAt = cloner.clone(lookAt);
316
+ this.path = cloner.clone(path);
317
+ this.rotation = cloner.clone(rotation);
318
this.spatial = cloner.clone(spatial);
319
}
320
0 commit comments