Posts

Game Assets Garden Indiegogo Campaign Shoutouts

This post is all about thanking all of the generous contributors to my Game Assets Garden campaign. It's people like them that make these huge projects possible. I can't thank you enough. All supporters will be listed below. For more information regarding the campaign, click  here . JustinVerse Please check out his Twitch channel for some amazing gaming content! twitch.tv/justinverse

How to Fix RigidBody Stacking Issue - Unity Object Stacking Issue

Image
Are you having issues with stacked RigidBody objects in Unity? Do they keep falling over when you stack them too high? This video will show you exactly how to fix the RigidBody stacking issue in Unity. Reference Material: https://docs.unity3d.com/Manual/class-PhysicsManager.html Free Game Assets : https://www.gameassetsgarden.com/ Subscribe to my YouTube channel : GameAssetsGarden [Video Dialog] Hi, my name is Mike, and in this video we’re going to quickly learn how to fix the RigidBody stacking issue in Unity. Just in case you’re unfamiliar with this, I’ve loaded a demo project that clearly demonstrates the problem with stacking numerous RigidBodies. Over here, I have a bunch of default unity cubes stacked fairly high, and over here, I have a smaller set of thin cubes. Now when I click play, we can instantly see the instability in each stack. Even though gravity is the only outside force being applied, both the default cubes, and the thin cubes collapse to the ground. O...

How to Install Unity Hub QUICKLY - Unity Hub 2020 - Unity Game Engine Tutorial

Image
In this tutorial, I show you how to quickly install Unity Hub, the software that manages multiple versions of the Unity Editor. By the end of this video you will be able to run Unity Hub, install a copy of the Unity Editor, and create your first project. Thanks for watching. Don't forget to subscribe and give the video a thumbs up if you liked it. Hi, my name is Mike, and in this video we’re going to learn how to quickly install the Unity Hub software. This software will allow us to download and manage various versions of the Unity Editor. So with that being said, let’s get started. The first thing we need to do is go to unity.com and click on the blue button labeled “Get Started”. The default page will show you all paid subscriptions to the software, however, if you’re just starting out, I recommend trying the free version first. To do that, let’s click on the tab labeled “Individual”, and then click on the “Get Started” button, under “Personal”. On the next page, we h...

How to Merge Files with Perl

Image
In this Perl tutorial, I show you how to merge any text-based files into one large file. It only requires a few lines of code, and the script can easily be modified to work with your unique set of files. Thank you so much for watching and don't forget to hit that 'like' button if you found this video to be useful. Subscribe to my channel as well to always get the latest tutorials. Reference Material: Glob Function - https://perldoc.perl.org/functions/glob.html Open Function & Modes - https://perldoc.perl.org/functions/open.html Source Code - https://www.procureeminence.com/?page=source-code

How to Break Out of a Promise Chain with JavaScript

Image
Ever wonder how to break out of a promise chain with JavaScript? If yes, than you are in the right place. I cover how to exit a promise chain with only a few lines of code. I also show you how to create your own custom error messages via the 'throw' statement. Related Links : Fetch API - developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch Response Interface - developer.mozilla.org/en-US/docs/Web/API/Response Response Status - developer.mozilla.org/en-US/docs/Web/API/Response/status Throw Statement - developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/throw Error Object - developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Error Source Code - procureeminence.com/?page=source-code

How to Easily Get URL Parameters with JavaScript

Image
Need to access URL GET parameters with JavaScript? If yes, this is the tutorial for you. I cover how to retrieve the values of any URL parameter, aka URL variable, with only a few lines of code. Related Links : URLSearchParams - https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams Query String - https://en.wikipedia.org/wiki/Query_string Firefox Web Console - https://developer.mozilla.org/en-US/docs/Tools/Web_Console Source Code - https://www.procureeminence.com/?page=source-code

jQuery JSON - Send JSON Data Using The AJAX Function

So you want to send and receive JSON data via jQuery ? Not a problem. We will cover all the basic info needed to get you up and running with JSON data transfers. If you're new to jQuery and need to know what it is, how to download it or how to add it to your page simply visit the websites listed below. Official jQuery Site :   jquery.com jQuery Intro :             learn.jquery.com/about-jquery/how-jquery-works/ Download jQuery :     jquery.com/download/ During this tutorial you may want to refer to the jQuery documentation for the .ajax() method so the link has been provided below. AJAX API Documentation :    api.jquery.com/jQuery.ajax/ Now that we have the boring stuff out of the way let's dive into the code. 1. The first thing we need to do is create the basic structure of the AJAX call. The reason we use the curly braces inside the parentheses is because we're building a PlainObject  which will tell the A...