All Projects → mamoniem → Unrealeditorpythonscripts

mamoniem / Unrealeditorpythonscripts

Licence: mit
Some of my personal scripts i made to use for my own projects, but free of charge to be used for any project and any purpose as long as it is not violating the Unreal Engine EULA.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Unrealeditorpythonscripts

PsWebServer
Civet web server integration plugin for Unreal Engine 4
Stars: ✭ 24 (-91.49%)
Mutual labels:  unreal-engine, ue4, mit-license
Psrealvehicle
Plugin for Unreal Engine 4 with simple force-driven vehicle simulation
Stars: ✭ 92 (-67.38%)
Mutual labels:  unreal-engine, ue4, mit-license
Kosm-Classic-FPS-Template-UE4
Classic Arena First-Person-Shooter Mechanics for Unreal Engine 4.
Stars: ✭ 38 (-86.52%)
Mutual labels:  unreal-engine, ue4
ServerAndLobbySystem
Server and Lobby System WIP test in Unreal Engine 4 C++ and UMG using the OnlineSubsystem
Stars: ✭ 92 (-67.38%)
Mutual labels:  unreal-engine, ue4
gamedevguide
Game Development & Unreal Engine Programming Guide
Stars: ✭ 314 (+11.35%)
Mutual labels:  unreal-engine, ue4
CrashlyticsKit
The most powerful, yet lightest weight crash reporting solution for Unreal Engine 4
Stars: ✭ 25 (-91.13%)
Mutual labels:  unreal-engine, ue4
LocalSimulation
This plugin allows you to essentially create PxScene or Physic Scenes by placing an Actor, and adding other Static Mesh Components and soon Skeletal Mesh components within this space. Adding Constraints, and Forces will work as expected, but now with the additional layer of abstraction so that simulation can be anchored to a transform.
Stars: ✭ 42 (-85.11%)
Mutual labels:  unreal-engine, ue4
ProceduralDungeon
This is an Unreal Engine 4/5 plugin to generate procedural dungeon.
Stars: ✭ 95 (-66.31%)
Mutual labels:  unreal-engine, ue4
VaOceanMobile
Ocean shader created for mobile games on Unreal Engine 4
Stars: ✭ 100 (-64.54%)
Mutual labels:  unreal-engine, ue4
global-event-system-ue4
Loosely coupled internal event system plugin for the Unreal Engine.
Stars: ✭ 122 (-56.74%)
Mutual labels:  unreal-engine, ue4
ue5-style-guide
An attempt to make Unreal Engine 4 projects more consistent
Stars: ✭ 2,892 (+925.53%)
Mutual labels:  unreal-engine, ue4
UT GameEventSystem
A flexible event system in Unreal Engine 4
Stars: ✭ 33 (-88.3%)
Mutual labels:  unreal-engine, ue4
GASTanksVsZombies
Tanks vs Zombies using Paper2D and GameplayAbilites
Stars: ✭ 35 (-87.59%)
Mutual labels:  unreal-engine, ue4
stomt-unreal-plugin
Collect feedback in-game/in-app with STOMT for Unreal Engine.
Stars: ✭ 23 (-91.84%)
Mutual labels:  unreal-engine, ue4
ue4-runtime
Container images for running packaged Unreal Engine projects via the NVIDIA Container Toolkit
Stars: ✭ 52 (-81.56%)
Mutual labels:  unreal-engine, ue4
PrFirebase
Firebase SDK integration for Unreal Engine 4
Stars: ✭ 25 (-91.13%)
Mutual labels:  unreal-engine, ue4
TransMat
Blender Python - Instantly Recreate Blender Shader Node Trees as Unreal Materials
Stars: ✭ 30 (-89.36%)
Mutual labels:  unreal-engine, ue4
VaKawaseBlur
Fast and furious Kawase blur implementation for Unreal Engine 4
Stars: ✭ 37 (-86.88%)
Mutual labels:  unreal-engine, ue4
UT Framework
Various advanced tools built for Unreal Engine 4
Stars: ✭ 45 (-84.04%)
Mutual labels:  unreal-engine, ue4
Unreal-Development-Guides-and-Tips
High-level concept explanations, detailed tutorials, performance considerations, shortcuts and other useful content that aims to improve your Unreal Engine 4 development journey.
Stars: ✭ 118 (-58.16%)
Mutual labels:  unreal-engine, ue4

#UnrealEditorPythonScripts#

NOTE:

May, 2020

Now my step by step guide into the new editor Python API of the Unreal Engine is live. You can watch the promo here: https://www.youtube.com/watch?v=tmSNFBisCOM

Or check it right away here: https://www.udemy.com/course/ue4python/

Or click the image below!


Some of my personal scripts i made to use for my own projects, but free of charge to be used for any project and any purpose as long as it is not violating the Unreal Engine EULA.

In order to be able to sue those helper scripts, you must be sure this plugins are enabled first:

  1. Scripting/Python Editor Script Plugin
  2. Scripting/Editor Scripting Utilities

You can watch scripts in action in the play-list below (click the image):

Don't forget to follow this repo, YouTube or Twitter account in order to keep updated with the latest scripts.

Aimation

  • CleanNotifiesFromAnimations.py Run on a selected single or multiple animation file(s) in order to clean up the selected file(s) from any animation notifies.

Assets

  • ReportUnusedAssets.py Running this script will look through all the project folders, and add to the log the assets that were found not in a use, or in another word, the assets that have no dependency with any other project files.
  • DeleteUnusedAssets.py Running this script will look through all the project folders, and delete the assets that were found not in a use, or in another word, the assets that have no dependency with any other project files. Note that, running this script won't show a confirmation message or accepting dialogue box, it will force delete the assets right a way, so make sure to evaluate the change before submitting to your repo.
  • UnifyAssetDuplicates.py Run on a selected single asset in order to look through the project for similar assets with the same name, and will remove all of them, and replace all their references with the selected one. This is a very common case if for example have added several packs or assets to the project and you will end up with several files (textures, materials or such) that have the same exact name and parameters (add Paragon characters for example to a single project could result that), but a unique version coming from each imported pack; and there it come the usage of that script in unifying them.
  • UnifyAllAssetsDuplicates.py It working the same as the previous script (UnifyAssetDuplicated) except this time, you don't have to select any asset. The script will run through the entire project seeking any asset duplicated (same type & same name) and will unify them into one version only.
  • OrganizeAssetsPerType.py When you start new project, you don't have to worry about organizing the assets per family in folders. Just go ahead and focus on building the prototype or content, and then execute that script at any moment will make sure to move all the assets from the same type (UClass) to their own folder.
  • PrefixAllAssets.py Running this script will apply prefix to majority of the files. While those prefixes I used are more subjective to my own pipeline, but you can modify them simply by opening the script and set the prefix of your choice per file type at the top of the script. You can also add more cases if not exist!

Materials

  • CreateInstancesOfSelectedMaterial.py Run on a selected single or multiple Material file(s) in order to generate material instances of it/them. The number of the final generated instances count can be set within the script before running, by changing the value of the variable totalRequiredInstances
  • AssignMaterialToAllSimilarNamedMeshes.py Select a static mesh and then a material (Yup, has to be in that order) and run the script in order to run through the project looking for similar static meshes, and then assign the selected material to all of found clones of that mesh. The script can be extended easily to add more materials in case of the mesh is not using a single material slot.

Level

  • CreateSingleLevelStreaming.py An example on how to create a level streaming via python script. You can create as many streaming levels and control them right away with a for loop, however in this example we create only singe level of "LevelStreamingDynamic" at a desired location.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].