Unity3D.College

Unity3D.College Learn about Unity

6 is here
03/18/2024

6 is here

Gnome Dip!  Is this how Instagram works??
11/23/2022

Gnome Dip! Is this how Instagram works??

When I started with Unity, physics was the first thing I had to figure out.. and it took a while.  So here's a quick run...
10/14/2019

When I started with Unity, physics was the first thing I had to figure out.. and it took a while.

So here's a quick run-through of everything you need to get started with Unity physics, along w/ a couple slightly more advanced tips :)

https://www.youtube.com/watch?v=dLYTwDQmjdo We'll learn about Unity3D physics for beginners, everything from rigidbodies and moving objects around, to bouncing and sliding. I'll show how to use triggers and collisions / colliders to interact with your game in code. We'll use OnTriggerEnter a

We'll learn about Unity3D physics for beginners, everything from rigidbodies and moving objects around, to bouncing and ...
10/14/2019

We'll learn about Unity3D physics for beginners, everything from rigidbodies and moving objects around, to bouncing and sliding. I'll show how to use triggers and collisions / colliders to interact with your game in code. We'll use OnTriggerEnter and OnCollisionEnter in some example physics scenarios and use physics materials to make things bouncy.

https://www.youtube.com/watch?v=dLYTwDQmjdo We'll learn about Unity3D physics for beginners, everything from rigidbodies and moving objects around, to bouncing and sliding. I'll show how to use triggers and collisions / colliders to interact with your game in code. We'll use OnTriggerEnter a

If you're not using asset bundles or addressables yet, you're probably wasting a lot of memory…. I know I was.. Luckily,...
10/07/2019

If you're not using asset bundles or addressables yet, you're probably wasting a lot of memory…. I know I was.. Luckily, it's not too difficult to implement addresables into your project and it comes with a lot of additional benefits like faster startup time and easier project management. In this video I'll show you how to get started with addressables, how to build the assetbundles, use the assetreference class and start switching your projects to use addressables. [ 30 more words ]

https://www.youtube.com/watch?v=uNpBS0LPhaU If you're not using asset bundles or addressables yet, you're probably wasting a lot of memory…. I know I was.. Luckily, it's not too difficult to implement addresables into your project and it comes with a lot of additional benefits like faster start

I don't normally talk much about relationships, but I've seen a lot of people struggling lately and wanted to share the ...
10/01/2019

I don't normally talk much about relationships, but I've seen a lot of people struggling lately and wanted to share the tips and strategies I use to keep my wife happy and have a good strong relationship. It's pretty simple, with a couple easy to follow steps (they're easy if you just make the choice to do them.. choosing the right thing is the hard part 🙂 [ 70 more words ]

https://youtu.be/ozi8CQNXpQQ I don't normally talk much about relationships, but I've seen a lot of people struggling lately and wanted to share the tips and strategies I use to keep my wife happy and have a good strong relationship. It's pretty simple, with a couple easy to follow steps (th

In today's devlog we're talking about being an imposter in my AAA game and indie game development jobs. I'll talk about ...
09/22/2019

In today's devlog we're talking about being an imposter in my AAA game and indie game development jobs. I'll talk about when I realized I didn't know everything... even though I was sure I did.. and how to adjust once you come to this realization. We'll discuss how to deal with imposter syndrome, what it is, why it happens and how to use that fear to get better and get an edge as an indie dev or a new developer starting out. Link to that Definition: (in-case you couldn't read the entire thing in under 1s 🙂

In today's devlog we're talking about being an imposter in my AAA game and indie game development jobs. I'll talk about when I realized I didn't know everything... even though I was sure I did.. and how to adjust once you come to this realization.

Learn how to move things properly with Update and FixedUpdate. We'll discuss the differences between them, why you shoul...
09/16/2019

Learn how to move things properly with Update and FixedUpdate. We'll discuss the differences between them, why you should read input in Update and why you should move in FixedUpdate. We'll use a ball hitting dominos as an example of a character we can control and move around using wasd and jump to show the differences and how to use the unity physics system with input.

https://www.youtube.com/watch?v=MfIsp28TYAQ&feature=youtu.be Learn how to move things properly with Update and FixedUpdate. We'll discuss the differences between them, why you should read input in Update and why you should move in FixedUpdate. We'll use a ball hitting dominos as an example

In this video we'll go over a variety of different collections available to us as game developers and I'll show practica...
09/09/2019

In this video we'll go over a variety of different collections available to us as game developers and I'll show practical examples of how you can use each of them. We'll go over arrays and jump right into queues, stacks, dictionaries, lists, hashsets and more. I'll give some real world game development examples where I've used them in VR & MMO games and give you a few ways you can use them in your own projects to simplify things, improve performance, and clean code 🙂

In this video we'll go over a variety of different collections available to us as game developers and I'll show practical examples of how you can use each of them. We'll go over arrays and jump right into queues, stacks, dictionaries, lists, hashsets and more. I'll give some real world game de

My first game development job literally lasted 3 weeks. Layoffs, buyouts, and mass firings are always a risk, and this t...
08/30/2019

My first game development job literally lasted 3 weeks. Layoffs, buyouts, and mass firings are always a risk, and this time I got unlucky, then really lucky right afterward… I'll explain the first day on the job, what it was like for the first few weeks, and how the layoff process all hit… Then how it ended up turning out pretty good for me and my 2nd start of a new job… and all the stuff that came w/ that..

My first game development job literally lasted 3 weeks. Layoffs, buyouts, and mass firings are always a risk, and this time I got unlucky, then really lucky right afterward… I'll explain the first day on the job, what it was like for the first few weeks, and how the layoff process all hit… Then ...

If you're not sure how to use singletons, had them bite you in the ***, or maybe you heard they shouldn't even exist… th...
08/20/2019

If you're not sure how to use singletons, had them bite you in the ***, or maybe you heard they shouldn't even exist… this is for you 🙂 In this Unity tutorial, I'll explain how and when to use singletons, what the static keyword does, when you can use the c # static variables instead of a full blown singleton/monosingleton base class, and all the ways you can break a singleton to make a giant mess 🙂 (along with a few ways that work pretty well and tips on how to avoid the bad stuff)

In this Unity tutorial I'll explain how and when to use singletons, what the static keyword does, when you can use the c # static variables instead of a full blown singleton/monosingleton base class, and all the ways you can break a singleton to make a giant mess.

Kill your NPCs in style with simple unity ragdoll physics. In this unity3d tutorial i'll show you how to generate a ragd...
07/01/2019

Kill your NPCs in style with simple unity ragdoll physics. In this unity3d tutorial i'll show you how to generate a ragdoll for your character and create the simple script to make it all work. We'll go over project setup, prefab design, and the rest of the process to make a character transition from running right into a in a fun natural ragdoll death. If you're looking for a Unity Ragdoll Tutorial, this is the one! 🙂 Download here:

Kill your NPCs in style with simple unity ragdoll physics. In this unity3d tutorial i'll show you how to generate a ragdoll for your character and create the simple script to make it all work. We'll go over project setup, prefab design, and the rest of the process to make a character transition fr

Address

Oceanside, CA

Alerts

Be the first to know and let us send you an email when Unity3D.College posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Share