SDK:
- cleanup some packages, move some classes - better names for some classes git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7774 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
66c395e250
commit
afee34b4b4
@ -31,6 +31,7 @@
|
|||||||
*/
|
*/
|
||||||
package com.jme3.gde.core.filters;
|
package com.jme3.gde.core.filters;
|
||||||
|
|
||||||
|
import com.jme3.gde.core.filters.actions.NewFilterPopup;
|
||||||
import com.jme3.gde.core.assets.FilterDataObject;
|
import com.jme3.gde.core.assets.FilterDataObject;
|
||||||
import com.jme3.gde.core.scene.SceneApplication;
|
import com.jme3.gde.core.scene.SceneApplication;
|
||||||
import com.jme3.post.Filter;
|
import com.jme3.post.Filter;
|
||||||
@ -131,7 +132,7 @@ public class FilterPostProcessorNode extends AbstractNode {
|
|||||||
public Action[] getActions(boolean context) {
|
public Action[] getActions(boolean context) {
|
||||||
// return super.getActions(context);
|
// return super.getActions(context);
|
||||||
return new Action[]{
|
return new Action[]{
|
||||||
new AddFilterAction(this)
|
new NewFilterPopup(this)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,8 +29,9 @@
|
|||||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
package com.jme3.gde.core.filters;
|
package com.jme3.gde.core.filters.actions;
|
||||||
|
|
||||||
|
import com.jme3.gde.core.filters.FilterPostProcessorNode;
|
||||||
import com.jme3.gde.core.filters.actions.NewFilterAction;
|
import com.jme3.gde.core.filters.actions.NewFilterAction;
|
||||||
import com.jme3.gde.core.undoredo.AbstractUndoableSceneEdit;
|
import com.jme3.gde.core.undoredo.AbstractUndoableSceneEdit;
|
||||||
import com.jme3.gde.core.undoredo.SceneUndoRedoManager;
|
import com.jme3.gde.core.undoredo.SceneUndoRedoManager;
|
||||||
@ -49,11 +50,11 @@ import org.openide.util.actions.Presenter;
|
|||||||
*
|
*
|
||||||
* @author normenhansen
|
* @author normenhansen
|
||||||
*/
|
*/
|
||||||
public class AddFilterAction extends AbstractAction implements Presenter.Popup {
|
public class NewFilterPopup extends AbstractAction implements Presenter.Popup {
|
||||||
|
|
||||||
protected FilterPostProcessorNode filterNode;
|
protected FilterPostProcessorNode filterNode;
|
||||||
|
|
||||||
public AddFilterAction(FilterPostProcessorNode node) {
|
public NewFilterPopup(FilterPostProcessorNode node) {
|
||||||
this.filterNode = node;
|
this.filterNode = node;
|
||||||
}
|
}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user