file_name
stringlengths
6
86
file_path
stringlengths
45
249
content
stringlengths
47
6.26M
file_size
int64
47
6.26M
language
stringclasses
1 value
extension
stringclasses
1 value
repo_name
stringclasses
767 values
repo_stars
int64
8
14.4k
repo_forks
int64
0
1.17k
repo_open_issues
int64
0
788
repo_created_at
stringclasses
767 values
repo_pushed_at
stringclasses
767 values
CompositeStrategy.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/stage/tools/transformStrategy/CompositeStrategy.java
package games.rednblack.editor.view.stage.tools.transformStrategy; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Input; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.SnapshotArray; import games.rednblack.editor.renderer.components.CompositeTransformComp...
11,604
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
LabelStrategy.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/stage/tools/transformStrategy/LabelStrategy.java
package games.rednblack.editor.view.stage.tools.transformStrategy; import com.badlogic.gdx.math.Vector2; import games.rednblack.editor.renderer.components.DimensionsComponent; import games.rednblack.editor.renderer.components.TransformComponent; import games.rednblack.editor.utils.runtime.SandboxComponentRetriever; im...
3,085
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
ITransformStrategy.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/stage/tools/transformStrategy/ITransformStrategy.java
package games.rednblack.editor.view.stage.tools.transformStrategy; import com.badlogic.gdx.math.Vector2; import games.rednblack.h2d.common.command.TransformCommandBuilder; /** * Created by Sasun Poghosyan on 4/13/2016. */ public interface ITransformStrategy { void calculate(float mouseDx, float mouseDy, int anc...
458
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
NinePatchStrategy.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/stage/tools/transformStrategy/NinePatchStrategy.java
package games.rednblack.editor.view.stage.tools.transformStrategy; import com.badlogic.gdx.math.Vector2; import games.rednblack.editor.renderer.components.DimensionsComponent; import games.rednblack.editor.renderer.components.NinePatchComponent; import games.rednblack.editor.renderer.components.TransformComponent; imp...
6,153
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
ColorPrimitiveStrategy.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/stage/tools/transformStrategy/ColorPrimitiveStrategy.java
package games.rednblack.editor.view.stage.tools.transformStrategy; import com.badlogic.gdx.math.Vector2; import games.rednblack.editor.renderer.components.DimensionsComponent; import games.rednblack.editor.renderer.components.TransformComponent; import games.rednblack.editor.utils.runtime.SandboxComponentRetriever; im...
2,967
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
AbstractTransformStrategy.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/stage/tools/transformStrategy/AbstractTransformStrategy.java
package games.rednblack.editor.view.stage.tools.transformStrategy; import com.badlogic.gdx.math.MathUtils; import com.badlogic.gdx.math.Vector2; import games.rednblack.editor.renderer.components.TransformComponent; import games.rednblack.editor.utils.RoundUtils; import games.rednblack.editor.view.ui.followers.NormalSe...
3,003
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
EntityClickListener.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/stage/input/EntityClickListener.java
package games.rednblack.editor.view.stage.input; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Input.Buttons; import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.utils.TimeUtils; public class EntityClickListener implements InputListener { /** Detects mouse over, mouse or finger touch presses...
6,918
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
SandboxInputAdapter.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/stage/input/SandboxInputAdapter.java
package games.rednblack.editor.view.stage.input; import com.artemis.BaseComponentMapper; import com.artemis.ComponentMapper; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.InputProcessor; import com.badlogic.gdx.math.Intersector; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.utils.Array; import c...
9,754
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
InputListenerComponent.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/stage/input/InputListenerComponent.java
package games.rednblack.editor.view.stage.input; import com.artemis.PooledComponent; import com.artemis.annotations.Transient; import com.badlogic.gdx.utils.Array; @Transient public class InputListenerComponent extends PooledComponent { private Array<InputListener> listeners = new Array<>(1); public void addListe...
747
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
InputListener.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/stage/input/InputListener.java
package games.rednblack.editor.view.stage.input; public interface InputListener { boolean keyDown(int entity, int keycode); boolean keyUp(int entity, int keycode); boolean keyTyped(int entity, char character); boolean touchDown(int entity, float screenX, float screenY, int pointer, int button); void touc...
600
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UISubmenuBar.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/UISubmenuBar.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
1,712
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
BoxItemResourceSelectionUIMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/BoxItemResourceSelectionUIMediator.java
package games.rednblack.editor.view.ui; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.scenes.scene2d.ui.Cell; import com.badlogic.gdx.scenes.scene2d.utils.DragAndDrop.Source; import com.badlogic.gdx.utils.Array; import com.badlogic.gdx.utils.ObjectSet; im...
10,190
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIMainTable.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/UIMainTable.java
package games.rednblack.editor.view.ui; import com.kotcrab.vis.ui.widget.VisTable; import games.rednblack.editor.utils.HyperLap2DUtils; import games.rednblack.editor.view.menu.HyperLap2DMenuBar; import games.rednblack.editor.view.menu.HyperLap2DMenuBarMediator; import games.rednblack.editor.view.ui.box.*; import games...
4,723
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
FollowersUI.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/FollowersUI.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
1,016
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
RulersUI.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/RulersUI.java
package games.rednblack.editor.view.ui; import com.badlogic.gdx.Input; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.math.Circle; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.scenes.scene2d.Actor; imp...
19,029
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
RulersUIMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/RulersUIMediator.java
package games.rednblack.editor.view.ui; import com.badlogic.gdx.utils.Array; import games.rednblack.editor.renderer.data.SceneVO; import games.rednblack.editor.utils.Guide; import games.rednblack.editor.view.stage.Sandbox; import games.rednblack.h2d.common.MsgAPI; import games.rednblack.puremvc.Mediator; import games....
2,830
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
FollowersUIMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/FollowersUIMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
7,751
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIDropDownMenuMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/UIDropDownMenuMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
12,041
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIDropDownMenu.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/UIDropDownMenu.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
4,358
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIWindowActionMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/UIWindowActionMediator.java
package games.rednblack.editor.view.ui; import games.rednblack.h2d.common.MsgAPI; import games.rednblack.puremvc.Mediator; import games.rednblack.puremvc.interfaces.INotification; import games.rednblack.puremvc.util.Interests; public class UIWindowActionMediator extends Mediator<UIWindowAction> { private static f...
974
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIWindowTitle.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/UIWindowTitle.java
package games.rednblack.editor.view.ui; import com.badlogic.gdx.scenes.scene2d.Touchable; import com.badlogic.gdx.utils.Align; import com.kotcrab.vis.ui.VisUI; import com.kotcrab.vis.ui.widget.VisLabel; import com.kotcrab.vis.ui.widget.VisTable; import games.rednblack.editor.utils.AppConfig; import games.rednblack.h2d...
939
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIWindowTitleMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/UIWindowTitleMediator.java
package games.rednblack.editor.view.ui; import games.rednblack.puremvc.Mediator; public class UIWindowTitleMediator extends Mediator<UIWindowTitle> { private static final String TAG = UIWindowTitleMediator.class.getCanonicalName(); public static final String NAME = TAG; public UIWindowTitleMediator()...
373
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
StickyNotesUI.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/StickyNotesUI.java
package games.rednblack.editor.view.ui; import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.scenes.scene2d.Group; import games.rednblack.editor.renderer.data.StickyNoteVO; import games.rednblack.editor.view.ui.widget.actors.StickyNoteActor; public class StickyNotesUI extends Group { public Stic...
1,636
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
StickyNotesUIMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/StickyNotesUIMediator.java
package games.rednblack.editor.view.ui; import games.rednblack.editor.controller.commands.CompositeCameraChangeCommand; import games.rednblack.editor.controller.commands.CreateStickyNoteCommand; import games.rednblack.editor.controller.commands.ModifyStickyNoteCommand; import games.rednblack.editor.controller.commands...
2,685
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIBottomMenuBar.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/UIBottomMenuBar.java
package games.rednblack.editor.view.ui; import com.badlogic.gdx.scenes.scene2d.ui.Skin; import com.kotcrab.vis.ui.VisUI; import com.kotcrab.vis.ui.widget.VisScrollPane; import com.kotcrab.vis.ui.widget.VisTable; import games.rednblack.editor.view.ui.box.bottom.*; import games.rednblack.h2d.common.view.ui.StandardWidge...
2,011
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIWindowAction.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/UIWindowAction.java
package games.rednblack.editor.view.ui; import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.scenes.scene2d.InputEvent; import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; import com.badlogic.gdx.utils.Align; import com.kotcrab.vis.u...
2,994
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
FollowerFactory.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/FollowerFactory.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
1,767
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
ParticleFollower.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/ParticleFollower.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
2,437
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
EmptyTransformationListener.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/EmptyTransformationListener.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
1,585
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
SpineFollower.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/SpineFollower.java
package games.rednblack.editor.view.ui.followers; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.Input; import com.badlogic.gdx.graphics.g2d.Batch; import com.badlogic.gdx.math.Matrix4; import com.esotericsoftware.spine.SkeletonRendererDebug; import games.rednblack.editor.utils.runtime.SandboxComponentRetriever;...
1,619
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
FollowerTransformationListener.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/FollowerTransformationListener.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
1,400
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
AnchorListener.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/AnchorListener.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
3,333
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
SubFollower.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/SubFollower.java
package games.rednblack.editor.view.ui.followers; import com.badlogic.gdx.scenes.scene2d.Group; import games.rednblack.puremvc.interfaces.INotification; /** * Created by CyberJoe on 7/2/2015. */ public abstract class SubFollower extends Group { protected int entity; protected BasicFollower parentFollower; ...
846
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
ImageFollower.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/ImageFollower.java
package games.rednblack.editor.view.ui.followers; /** * Created by CyberJoe on 8/2/2015. */ public class ImageFollower extends NormalSelectionFollower { public ImageFollower(int entity) { super(entity); } @Override public void update() { /*TextureRegionComponent textureRegionCompone...
581
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
LightFollower.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/LightFollower.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
4,277
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
BasicFollower.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/BasicFollower.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
7,515
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
PolygonTransformationListener.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/PolygonTransformationListener.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
1,355
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
NormalSelectionFollower.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/NormalSelectionFollower.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
8,211
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
PolygonFollower.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/followers/PolygonFollower.java
package games.rednblack.editor.view.ui.followers; import com.artemis.ComponentMapper; import com.badlogic.gdx.Input; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.graphics.OrthographicCamera; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.scenes.scene2d.*; import com.badlogic.gdx.scene...
14,102
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIItemProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/UIItemProperties.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
1,147
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIItemPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/UIItemPropertiesMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
2,338
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIAbstractProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/UIAbstractProperties.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
1,367
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIAbstractEntityPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/UIAbstractEntityPropertiesMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
2,942
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIRemovableProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/UIRemovableProperties.java
package games.rednblack.editor.view.ui.properties; import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.scenes.scene2d.InputEvent; import com.badlogic.gdx.scenes.scene2d.Touchable; import com.badlogic.gdx.scenes.scene2d.ui.Table; import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; import com....
2,670
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIAbstractPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/UIAbstractPropertiesMediator.java
package games.rednblack.editor.view.ui.properties; import games.rednblack.editor.view.stage.Sandbox; import games.rednblack.h2d.common.MsgAPI; import games.rednblack.puremvc.Mediator; import games.rednblack.puremvc.interfaces.INotification; import games.rednblack.puremvc.util.Interests; public abstract class UIAbstra...
1,861
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIItemCollapsibleProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/UIItemCollapsibleProperties.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
2,987
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIPolygonComponentPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIPolygonComponentPropertiesMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
6,849
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIPhysicsProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIPhysicsProperties.java
package games.rednblack.editor.view.ui.properties.panels; import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; import com.badlogic.gdx.utils.Align; import com.badlogic.gdx.utils.Array; import com.kotcrab.vis.ui.util.Validators; import com.kotcrab.vis.ui.widget.*; i...
11,501
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIMultipleSelectPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIMultipleSelectPropertiesMediator.java
package games.rednblack.editor.view.ui.properties.panels; import games.rednblack.editor.view.ui.properties.UIAbstractPropertiesMediator; import games.rednblack.puremvc.interfaces.INotification; import games.rednblack.puremvc.util.Interests; import org.apache.commons.lang3.ArrayUtils; import java.util.Set; public cla...
1,191
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UICircleShapePropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UICircleShapePropertiesMediator.java
package games.rednblack.editor.view.ui.properties.panels; import games.rednblack.editor.controller.commands.RemoveComponentFromItemCommand; import games.rednblack.editor.controller.commands.component.UpdateCircleShapeCommand; import games.rednblack.editor.renderer.components.shape.CircleShapeComponent; import games.re...
2,397
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UICompositeItemPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UICompositeItemPropertiesMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
3,397
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UILightItemProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UILightItemProperties.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
11,605
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UISpriteAnimationItemProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UISpriteAnimationItemProperties.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
5,981
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIPolygonComponentProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIPolygonComponentProperties.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
4,563
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UITalosPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UITalosPropertiesMediator.java
package games.rednblack.editor.view.ui.properties.panels; import games.rednblack.editor.controller.commands.component.UpdateTalosDataCommand; import games.rednblack.h2d.extension.talos.TalosComponent; import games.rednblack.h2d.extension.talos.TalosVO; import games.rednblack.editor.utils.runtime.SandboxComponentRetrie...
1,505
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UITypingLabelPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UITypingLabelPropertiesMediator.java
package games.rednblack.editor.view.ui.properties.panels; import games.rednblack.editor.controller.commands.RemoveComponentFromItemCommand; import games.rednblack.editor.utils.runtime.SandboxComponentRetriever; import games.rednblack.editor.view.ui.properties.UIItemPropertiesMediator; import games.rednblack.h2d.common...
2,155
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UILightItemPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UILightItemPropertiesMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
4,532
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIScenePropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIScenePropertiesMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
8,825
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIParticleProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIParticleProperties.java
package games.rednblack.editor.view.ui.properties.panels; import com.kotcrab.vis.ui.widget.VisCheckBox; import games.rednblack.editor.event.CheckBoxChangeListener; import games.rednblack.editor.view.ui.properties.UIItemCollapsibleProperties; import games.rednblack.h2d.common.view.ui.StandardWidgetsFactory; public cla...
1,627
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UILabelItemPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UILabelItemPropertiesMediator.java
package games.rednblack.editor.view.ui.properties.panels; import games.rednblack.editor.proxy.FontManager; import games.rednblack.editor.proxy.ResourceManager; import games.rednblack.editor.renderer.components.label.LabelComponent; import games.rednblack.editor.utils.runtime.SandboxComponentRetriever; import games.red...
4,034
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UISensorProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UISensorProperties.java
package games.rednblack.editor.view.ui.properties.panels; import com.badlogic.gdx.utils.Align; import com.kotcrab.vis.ui.util.Validators; import com.kotcrab.vis.ui.widget.*; import games.rednblack.editor.event.CheckBoxChangeListener; import games.rednblack.editor.event.KeyboardListener; import games.rednblack.editor.v...
8,308
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIPhysicsPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIPhysicsPropertiesMediator.java
package games.rednblack.editor.view.ui.properties.panels; import games.rednblack.editor.controller.commands.RemoveComponentFromItemCommand; import games.rednblack.editor.controller.commands.component.UpdatePhysicsDataCommand; import games.rednblack.editor.renderer.components.physics.PhysicsBodyComponent; import games....
5,758
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIShaderProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIShaderProperties.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
4,895
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UISpineAnimationItemPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UISpineAnimationItemPropertiesMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
3,016
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIMultipleSelectProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIMultipleSelectProperties.java
package games.rednblack.editor.view.ui.properties.panels; import com.badlogic.gdx.utils.Align; import com.kotcrab.vis.ui.widget.VisLabel; import games.rednblack.editor.view.ui.properties.UIAbstractProperties; import games.rednblack.h2d.common.view.ui.StandardWidgetsFactory; public class UIMultipleSelectProperties ext...
947
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIBasicItemProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIBasicItemProperties.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
14,291
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UICircleShapeProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UICircleShapeProperties.java
package games.rednblack.editor.view.ui.properties.panels; import com.badlogic.gdx.utils.Align; import com.kotcrab.vis.ui.widget.VisLabel; import com.kotcrab.vis.ui.widget.spinner.Spinner; import games.rednblack.editor.event.NumberSelectorOverlapListener; import games.rednblack.editor.view.ui.properties.UIRemovableProp...
1,581
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UITypingLabelProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UITypingLabelProperties.java
package games.rednblack.editor.view.ui.properties.panels; import com.badlogic.gdx.scenes.scene2d.ui.TextButton; import games.rednblack.editor.event.ButtonToNotificationListener; import games.rednblack.editor.view.ui.properties.UIRemovableProperties; import games.rednblack.h2d.common.view.ui.StandardWidgetsFactory; imp...
1,120
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UISpineAnimationItemProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UISpineAnimationItemProperties.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
3,253
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UITextToolProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UITextToolProperties.java
package games.rednblack.editor.view.ui.properties.panels; /** * Created by azakhary on 4/24/15. */ public class UITextToolProperties extends UILabelItemProperties { public static final String prefix = "games.rednblack.editor.view.ui.properties.panels.UITextToolProperties"; public static final String FONT_...
435
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UILightBodyProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UILightBodyProperties.java
package games.rednblack.editor.view.ui.properties.panels; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.math.Vector3; import com.badlogic.gdx.scenes.scene2d.InputEvent; import com.badlogic.gdx.scenes.scene2d.ui.Table; import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; import com.badlogic.gdx...
10,140
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UITextToolPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UITextToolPropertiesMediator.java
package games.rednblack.editor.view.ui.properties.panels; import games.rednblack.editor.proxy.FontManager; import games.rednblack.editor.proxy.ResourceManager; import games.rednblack.editor.view.stage.tools.TextTool; import games.rednblack.editor.view.ui.properties.UIAbstractPropertiesMediator; import games.rednblack....
1,747
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UICompositeItemProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UICompositeItemProperties.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
3,051
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UILightBodyPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UILightBodyPropertiesMediator.java
package games.rednblack.editor.view.ui.properties.panels; import com.badlogic.gdx.graphics.Color; import com.kotcrab.vis.ui.widget.color.ColorPicker; import com.kotcrab.vis.ui.widget.color.ColorPickerAdapter; import games.rednblack.editor.controller.commands.RemoveComponentFromItemCommand; import games.rednblack.edito...
6,409
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UILabelItemProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UILabelItemProperties.java
package games.rednblack.editor.view.ui.properties.panels; import com.badlogic.gdx.graphics.g2d.BitmapFont; import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.scenes.scene2d.utils.ChangeListener; import com.badlogic.gdx.utils.Align; import com.badlogic.gdx.utils.Array; import com.kotcrab.vis.ui.widge...
9,159
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UISceneProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UISceneProperties.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
14,744
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIImageItemPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIImageItemPropertiesMediator.java
package games.rednblack.editor.view.ui.properties.panels; import games.rednblack.editor.controller.commands.component.UpdateImageItemDataCommand; import games.rednblack.editor.renderer.components.TextureRegionComponent; import games.rednblack.editor.renderer.data.SimpleImageVO; import games.rednblack.editor.utils.runt...
2,109
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIShaderPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIShaderPropertiesMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
5,607
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIParticlePropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIParticlePropertiesMediator.java
package games.rednblack.editor.view.ui.properties.panels; import games.rednblack.editor.controller.commands.component.UpdateParticleDataCommand; import games.rednblack.editor.renderer.components.particle.ParticleComponent; import games.rednblack.editor.renderer.data.ParticleEffectVO; import games.rednblack.editor.util...
1,591
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UITalosProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UITalosProperties.java
package games.rednblack.editor.view.ui.properties.panels; import com.kotcrab.vis.ui.widget.VisCheckBox; import games.rednblack.editor.event.CheckBoxChangeListener; import games.rednblack.editor.view.ui.properties.UIItemCollapsibleProperties; import games.rednblack.h2d.common.view.ui.StandardWidgetsFactory; public cla...
1,621
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIImageItemProperties.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIImageItemProperties.java
package games.rednblack.editor.view.ui.properties.panels; import com.badlogic.gdx.utils.Align; import com.kotcrab.vis.ui.widget.VisSelectBox; import games.rednblack.editor.event.SelectBoxChangeListener; import games.rednblack.editor.view.ui.properties.UIItemCollapsibleProperties; import games.rednblack.h2d.common.view...
1,941
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UISpriteAnimationItemPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UISpriteAnimationItemPropertiesMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
3,434
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UISensorPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UISensorPropertiesMediator.java
package games.rednblack.editor.view.ui.properties.panels; import games.rednblack.editor.controller.commands.RemoveComponentFromItemCommand; import games.rednblack.editor.controller.commands.component.UpdateSensorDataCommand; import games.rednblack.editor.renderer.components.physics.SensorComponent; import games.rednbl...
5,125
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIBasicItemPropertiesMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/properties/panels/UIBasicItemPropertiesMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
13,058
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIAlignBoxMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UIAlignBoxMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
4,878
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIMultiPropertyBox.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UIMultiPropertyBox.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
2,059
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIItemsTreeBox.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UIItemsTreeBox.java
package games.rednblack.editor.view.ui.box; import com.artemis.ComponentMapper; import com.badlogic.gdx.graphics.Color; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.scenes.scene2d.Actor; import com.badlogic.gdx.scenes.scene2d.InputEvent; import com.badlogic.gdx.scenes.scene2d.ui.Tree; import com.badlo...
11,407
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIResourcesBox.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UIResourcesBox.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
2,594
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIBaseBox.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UIBaseBox.java
package games.rednblack.editor.view.ui.box; import com.kotcrab.vis.ui.widget.VisTable; import games.rednblack.puremvc.Facade; public abstract class UIBaseBox extends VisTable { protected final Facade facade; public UIBaseBox() { super(); facade = Facade.getInstance(); } public abstr...
341
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIToolBoxMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UIToolBoxMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
4,456
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UICompositeHierarchy.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UICompositeHierarchy.java
package games.rednblack.editor.view.ui.box; import com.badlogic.gdx.scenes.scene2d.InputEvent; import com.badlogic.gdx.scenes.scene2d.ui.HorizontalGroup; import com.badlogic.gdx.scenes.scene2d.ui.Image; import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; import com.kotcrab.vis.ui.VisUI; import com.kotcrab.vis....
1,996
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UICompositeHierarchyMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UICompositeHierarchyMediator.java
package games.rednblack.editor.view.ui.box; import com.badlogic.gdx.utils.Array; import games.rednblack.editor.controller.commands.CompositeCameraChangeCommand; import games.rednblack.editor.renderer.components.ParentNodeComponent; import games.rednblack.editor.utils.runtime.EntityUtils; import games.rednblack.editor....
3,515
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UICollapsibleBox.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UICollapsibleBox.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
3,549
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UILayerBoxMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UILayerBoxMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
14,347
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIItemsTreeBoxMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UIItemsTreeBoxMediator.java
package games.rednblack.editor.view.ui.box; import com.badlogic.gdx.scenes.scene2d.utils.Selection; import com.badlogic.gdx.utils.Array; import games.rednblack.editor.controller.commands.*; import games.rednblack.editor.controller.commands.resource.DeleteResourceCommand; import games.rednblack.editor.renderer.data.Lay...
4,345
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UILayerBox.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UILayerBox.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
16,691
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIToolBox.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UIToolBox.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
3,623
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIItemsTreeValue.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UIItemsTreeValue.java
package games.rednblack.editor.view.ui.box; public class UIItemsTreeValue { public String entityId = null; public int zIndex = -1; public void setEntityId(String entityId) { this.entityId = entityId; } public void setzIndex(int zIndex) { this.zIndex = zIndex; } public voi...
386
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
UIAlignBox.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/UIAlignBox.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
6,821
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z
PanelMediator.java
/FileExtraction/Java_unseen/rednblackgames_HyperLap2D/src/main/java/games/rednblack/editor/view/ui/box/PanelMediator.java
/* * ****************************************************************************** * * Copyright 2015 See AUTHORS file. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * ...
1,863
Java
.java
rednblackgames/HyperLap2D
348
63
14
2020-07-17T14:25:00Z
2024-05-08T21:35:58Z