All Projects → DarklightGames → DarkestHour

DarklightGames / DarkestHour

Licence: other
Darkest Hour: Europe '44-'45

Programming Languages

UnrealScript
20 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to DarkestHour

CrashlyticsKit
The most powerful, yet lightest weight crash reporting solution for Unreal Engine 4
Stars: ✭ 25 (-48.98%)
Mutual labels:  unreal-engine
PrFirebase
Firebase SDK integration for Unreal Engine 4
Stars: ✭ 25 (-48.98%)
Mutual labels:  unreal-engine
my-awesome-projects
Learn by doing projects
Stars: ✭ 48 (-2.04%)
Mutual labels:  unreal-engine
stomt-unreal-plugin
Collect feedback in-game/in-app with STOMT for Unreal Engine.
Stars: ✭ 23 (-53.06%)
Mutual labels:  unreal-engine
UEShaderScript
UEShaderScript is a free Blender Plugin that allows for saving and dynamically loading shader maps and textures. It is built for all 3d assets exported from Unreal Engine.
Stars: ✭ 26 (-46.94%)
Mutual labels:  unreal-engine
CrashBandicoot-Timetwister
Crash Bandicoot: Timetwister is a remaked version of Crash Bandicoot 3: Warped's Tomb Wader level on Unreal Engine 4.26
Stars: ✭ 26 (-46.94%)
Mutual labels:  unreal-engine
Yurlungur
The universal scripting wrapper for Maya, Houdini and Unreal Engine.
Stars: ✭ 51 (+4.08%)
Mutual labels:  unreal-engine
global-event-system-ue4
Loosely coupled internal event system plugin for the Unreal Engine.
Stars: ✭ 122 (+148.98%)
Mutual labels:  unreal-engine
Forms
Forms is a GUI framework for the Unreal Development Kit. Programmed in UnrealScript independent of Scaleforms and UIScene. Inspired by OOP and subobjects semantics of the Unreal Engine 2 GUI's framework.
Stars: ✭ 22 (-55.1%)
Mutual labels:  unreal-engine
gamedevguide
Game Development & Unreal Engine Programming Guide
Stars: ✭ 314 (+540.82%)
Mutual labels:  unreal-engine
Kosm-Classic-FPS-Template-UE4
Classic Arena First-Person-Shooter Mechanics for Unreal Engine 4.
Stars: ✭ 38 (-22.45%)
Mutual labels:  unreal-engine
UnrealEngine
UnrealEngine 1998
Stars: ✭ 65 (+32.65%)
Mutual labels:  unreal-engine
VRMocap
A SteamVR powered mocap solution for Unreal Engine
Stars: ✭ 88 (+79.59%)
Mutual labels:  unreal-engine
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 (-14.29%)
Mutual labels:  unreal-engine
RTRT-Trans-Caustics
A reference implementation of ”Rendering transparent objects with caustics using real-time ray tracing“ using Unreal Engine 4.25.1.
Stars: ✭ 12 (-75.51%)
Mutual labels:  unreal-engine
Blender-UE4-Workspace
Blender add-on for better workflow with unreal engine 4
Stars: ✭ 143 (+191.84%)
Mutual labels:  unreal-engine
ProceduralDungeon
This is an Unreal Engine 4/5 plugin to generate procedural dungeon.
Stars: ✭ 95 (+93.88%)
Mutual labels:  unreal-engine
ResScannerUE
ResScannerUE is an Unreal Engine asset scan plugin.
Stars: ✭ 32 (-34.69%)
Mutual labels:  unreal-engine
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 (+140.82%)
Mutual labels:  unreal-engine
awesome-arcore
⚡️ A curated list of awesome ARCore projects and resources. Feel free to contribute!
Stars: ✭ 16 (-67.35%)
Mutual labels:  unreal-engine

Discord

This is the repository for Darkest Hour: Europe '44-'45. For more information, visit the Steam Store.

Prerequisites

Before cloning this repository, all of the following requirements must be satisfied.

System

Dependencies & Tools

Base game & SDK

This game is a modification for Red Orchestra: Ostfront 41-45 and requires you to own the base game. You'll need to have the following apps installed:

Cloning the repository

Apart from the code files, the repository also contains asset packages (maps, textures, meshes, etc.), which are stored using Git Large File Storage. To clone it, you'll have to perform a few extra steps.

Before you continue, make sure you have at least 11GB of free disk space on the drive where Red Orchestra is installed on, as asset files are quite hefty.

Option 1: Using Command Prompt

  1. Open a Command Prompt window in Administrator mode by pressing Win, typing cmd, then pressing Ctrl+Shift+Enter.
  2. Enter the following commands, hitting Enter after each line:
cd /d "%RODIR%"
git lfs install --skip-smudge
git clone https://github.com/DarklightGames/DarkestHour.git tmp
xcopy tmp . /e /h /y
rmdir /s /q tmp
git lfs pull
git lfs install --force

Option 2: Using Git Bash

$ cd "$RODIR"
$ git lfs install --skip-smudge
$ git clone https://github.com/DarklightGames/DarkestHour.git tmp
$ cp -rf tmp/. .
$ rm -rf tmp
$ git lfs pull
$ git lfs install --force

Running the application

After completing the steps above and successfully cloning the repository, you can:

  • Run the development version of the game via %RODIR%/System/DarkestHourDev.bat.
  • Run the development version of the SDK via %RODIR%/System/DHEd.bat.

Be aware that these batch files will compile the game's code files if necessary. Compilation can fail if there are errors in your code.

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].