Skip to content

Commit

Permalink
erased scripts in example games
Browse files Browse the repository at this point in the history
  • Loading branch information
sven1977 committed Feb 20, 2018
1 parent fd4d1a9 commit d2b499b
Show file tree
Hide file tree
Showing 24 changed files with 9 additions and 1,081 deletions.
6 changes: 6 additions & 0 deletions Plugins/MaRLEnE/Scripts/dump_selected_asset.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# run this script in the python editor of the UE4 editor after selecting an asset in the asset browser
# in order to see that path for this class (useful for loading a class via ue.load_class).

import unreal_engine as ue

ue.log(ue.get_selected_assets()[0].get_path_name())
4 changes: 3 additions & 1 deletion docker/ue4_game/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ WORKDIR UnrealEngine

# - copy necessary scripts from the plugin to the game's content folder
RUN mkdir -p ${GAME}/Content/Scripts/
RUN cp -u ${GAME}/Plugins/MaRLEnE/Scripts/* ${GAME}/Content/Scripts/.
# force-copy (no -u flag), because some Scripts may exist in the examples/[some Game] folder of MaRLEnE with
# the same age as the scripts in MaRLEnE/Scripts/
RUN cp ${GAME}/Plugins/MaRLEnE/Scripts/* ${GAME}/Content/Scripts/.

# build and cook the game
RUN Engine/Build/BatchFiles/RunUAT.sh BuildCookRun -project=${GAME}/${GAME}.uproject -nop4 -build -cook -compressed -stage -platform=Linux -clientconfig=Development -pak -archive -archivedirectory="${GAME}/Build" -utf8output
Expand Down
300 changes: 0 additions & 300 deletions examples/UE4Games/AlienInvaders/Content/Scripts/ducandu_server.py

This file was deleted.

Binary file not shown.

This file was deleted.

Binary file not shown.

This file was deleted.

Binary file not shown.
33 changes: 0 additions & 33 deletions examples/UE4Games/AlienInvaders/Content/Scripts/example_ticker.py

This file was deleted.

Binary file not shown.

0 comments on commit d2b499b

Please sign in to comment.