All Projects → GreatArcStudios → Unitypausemenu

GreatArcStudios / Unitypausemenu

Licence: mit
This is an open source Unity pause menu created for the game New Horizons, and it's completely free because of how a pause menu is a core component of a game, while the unity asset store was lacking in such an asset (until this was released on the asset store).

Programming Languages

scripting
82 projects

Projects that are alternatives of or similar to Unitypausemenu

Gdk For Unity
SpatialOS GDK for Unity
Stars: ✭ 296 (+85%)
Mutual labels:  game, unity, game-development, unity-editor
09 Zombierunner Original
First person shooter with Unity terrain and AI pathfinding (http://gdev.tv/cudgithub)
Stars: ✭ 64 (-60%)
Mutual labels:  game, unity, unity3d, game-development
1 Character Movement
The first section of the course. You will learn everything required to build a simple movement system in your RPG, creating the core experience. http://gdev.tv/rpggithub
Stars: ✭ 81 (-49.37%)
Mutual labels:  game, unity, unity3d, game-development
Ksframework
QQ Group:538722494,KSFramework = KEngine + SLua(or xLua) , Unity3D Framework/Toolsets focus on hot reload
Stars: ✭ 1,119 (+599.38%)
Mutual labels:  game, unity, unity3d, game-development
Gdk For Unity Fps Starter Project
SpatialOS GDK for Unity FPS Starter Project
Stars: ✭ 119 (-25.62%)
Mutual labels:  game, unity, unity3d, game-development
Texturepanner
This repository hosts a shader for Unity3D whose main goal is to facilitate the creation of neon-like signs, conveyor belts and basically whatever based on scrolling textures
Stars: ✭ 528 (+230%)
Mutual labels:  game, unity, unity3d, game-development
Noahgameframe
A fast, scalable, distributed game server engine/framework for C++, include the actor library, network library, can be used as a real time multiplayer game engine ( MMO RPG/MOBA ), which support C#/Lua script/ Unity3d, Cocos2dx and plan to support Unreal.
Stars: ✭ 3,258 (+1936.25%)
Mutual labels:  game, unity, unity3d, game-development
Number Wizard Ui Original
Introducing basic User Interface in the Complete Unity C# Developer 2D course (http://gdev.tv/cudgithub)
Stars: ✭ 18 (-88.75%)
Mutual labels:  game, unity, unity3d, game-development
Beaverandfairies
Stars: ✭ 14 (-91.25%)
Mutual labels:  game, unity, unity3d, game-development
3 Modifiers And Abilities
Customise character abilities, weapons, characters and enemies. This includes multiple damage types, modifiers, sounds, animations. By the end you can create your core combat experience. (REF MA_RPG) http://gdev.tv/rpggithub
Stars: ✭ 64 (-60%)
Mutual labels:  game, unity, unity3d, game-development
Bdframework.core
[中]Simple! Easy! Powerful Unity3d game workflow! Unity3d framework:c# hotfix(ILRuntime)、asset manager、ui workflow、network debug... and so on
Stars: ✭ 1,196 (+647.5%)
Mutual labels:  game, unity, unity3d
Ignorance
Ignorance utilizes the power of ENet to provide a reliable UDP networking transport for Mirror Networking.
Stars: ✭ 158 (-1.25%)
Mutual labels:  game, unity, unity3d
Extosc
extOSC is a tool dedicated to simplify creation of applications in Unity with OSC protocol usage.
Stars: ✭ 69 (-56.87%)
Mutual labels:  unity, unity3d, unity-editor
3d Game Shaders For Beginners
🎮 A step-by-step guide to implementing SSAO, depth of field, lighting, normal mapping, and more for your 3D game.
Stars: ✭ 11,698 (+7211.25%)
Mutual labels:  unity, unity3d, game-development
Projectfieldwarning
Project: Field Warning is a community-made RTS game centered around lethal regiment and division-scale warfare.
Stars: ✭ 86 (-46.25%)
Mutual labels:  game, unity, unity3d
Bright Souls
An indie "Dark Souls" clone in Unity with Adaptive Game Technology.
Stars: ✭ 91 (-43.12%)
Mutual labels:  game, unity3d, game-development
Entitas Sync Framework
Networking framework for Entitas ECS. Targeted at turnbased games or other slow-paced genres.
Stars: ✭ 98 (-38.75%)
Mutual labels:  game, unity, game-development
Reflexityai
Provide a basic framework to build an Utility IA in Unity using the xNode editor of Siccity
Stars: ✭ 109 (-31.87%)
Mutual labels:  unity, unity3d, game-development
Unity Platformer
Unity platformer framework: IA, Ladders, Jumps, WallStick, WallJumps, Slopes, MovingPlatforms, OneWayPlatforms/Walls, Ropes and more...
Stars: ✭ 97 (-39.37%)
Mutual labels:  game, unity, unity3d
Pb stl
STL import/export for Unity, supporting both ASCII and Binary.
Stars: ✭ 108 (-32.5%)
Mutual labels:  unity, unity3d, unity-editor

Unrelated request: please check out my new asset uDocumentGenerator

alt text

Setup

Just drag the pause menu prefab from the prefab folder into your scene, and then bring it into view by editing the x value of the PREFAB to 0 , y to 0 and Z to 0.

Updating

Completely delete the pause menu folder and install the new version.

If you have a custom prefab or manager you can always keep that version in a different folder and merge the changes from there.

Things to note

  1. Assign the main cam obj as the camera with your image effects like DOF and AO.
  2. The docs are located here: https://github.com/GreatArcStudios/UnityPauseMenuDocs
  3. Special note for 5.4 and above: you may ignore the Coroutine Utlities folder and or update the script due to Unity 5.4's (and above) addition of a WaitForSecondsRealTime method.

Joystick/Controller support

Using a joystick/controller should work fine. Just remeber to change the highlighted dropdown to Joystick. alt text

Enabling pause blur

First, make sure you have the unity image effects package. Then follow the next few steps.

Uncomment the following variable declarations found starting at line 270

 //Blur Variables
 //Blur Effect Script (using the standard image effects package) 
 public Blur blurEffect;
 //Blur Effect Shader (should be the one that came with the package)
 public Shader blurEffectShader;
 //Boolean for if the blur effect was originally enabled
 public Boolean blurBool;

Find and uncomment the following code found starting at line 349

 //set the blur boolean to false;
 blurBool = false;
 //Add the blur effect
 mainCamObj.AddComponent(typeof(Blur));
 blurEffect = (Blur)mainCamObj.GetComponent(typeof(Blur));
 blurEffect.blurShader = blurEffectShader;
 blurEffect.enabled = false;  

Uncomment the following code found starting at line 382

if (blurBool == false)
{
blurEffect.enabled = false;
}
else
 {
 //if you want to add in your own stuff do so here
 return;
 } 

Uncomment the following code found starting at line 465 .

if (blurBool == false)
{
 blurEffect.enabled = true;
}  

And that's it. Just a few steps to enable a blury background on your pause menu!

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