From ff56437b8ea2bad53a5b0889beae7cec3e469ded Mon Sep 17 00:00:00 2001 From: pavl_g <60224159+Scrappers-glitch@users.noreply.github.com> Date: Mon, 22 Jan 2024 20:40:16 +0300 Subject: [PATCH] BaseAction.(): better explanation of the constructor job --- .../src/main/java/com/jme3/anim/tween/action/BaseAction.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jme3-core/src/main/java/com/jme3/anim/tween/action/BaseAction.java b/jme3-core/src/main/java/com/jme3/anim/tween/action/BaseAction.java index f30a6ca851..df67153fc6 100644 --- a/jme3-core/src/main/java/com/jme3/anim/tween/action/BaseAction.java +++ b/jme3-core/src/main/java/com/jme3/anim/tween/action/BaseAction.java @@ -64,7 +64,8 @@ public class BaseAction extends Action { private boolean maskPropagationEnabled = true; /** - * Instantiates an action from a tween. + * Instantiates an action from a tween by extracting the actions from a tween + * to a list of sub-actions to be interpolated later. * * @param tween a tween to extract the actions from (not null). */