Esteban IbarraUnderstanding the Big-O, What Sorting algorithm is best?Big O is at the heart of the optimization process, and Big-O allows you to monitor the spatiotemporal complexity of your code or how…Nov 3, 2021Nov 3, 2021
Esteban IbarraOrganizing your UI for performance in UnityIn a nutshell, Unity recommends you separate your canvases based on whether you will update them or not. The canvas that you don’t update…Nov 2, 2021Nov 2, 2021
Esteban IbarraBasics of Optimization in UnityYesterday's example should show why it’s important to cache your coroutines, but it’s important to cache variables as well.Nov 1, 20211Nov 1, 20211
Esteban IbarrainNerd For TechOptimizing Coroutines in UnityCoroutines are extremely useful for any time specific function, however when one uses the yield return new function, that uses a lot of…Oct 31, 20211Oct 31, 20211
Esteban IbarraUsing the Unity Profiler, an OverviewDay 1 of optimization class and we’re going to learn about the profiler! To open it, just go to window/analysis/profiler. It was…Oct 30, 2021Oct 30, 2021
Esteban Ibarra0Daily progress: The home stretch! Learning about the Unity profiler.Wow! What a journey it’s been! I’ve now programmed my first space shooter game, learned game programming in various styles from 2d, 2.5d…Oct 29, 2021Oct 29, 2021
Esteban IbarraAsset Bundles for Unity part 2: Downloading an asset bundle from Amazon AWS.We’re ready for our app to download our horse file! Let’s get into the AWSManager and prepare a method:Oct 28, 2021Oct 28, 2021
Esteban IbarraCreating an AWS Manager in Unity: Downloading the AWS SDKNow that we have an asset bundle uploaded to S3, we’ll want to download it from within Unity. To do that, we’ll need to go to this page and…Oct 27, 2021Oct 27, 2021
Esteban IbarraDaily progress — Uploading an Asset Bundle to AWS.The process to uploading an asset to Amazons S3 is pretty simple (in comparison to other actions). Let’s log in to our account:Oct 26, 2021Oct 26, 2021
Esteban IbarraAsset Bundles for UnityAsset Bundles are a great way to get more content into your app, maybe you want to create DLC, or if your app is too big, you can create a…Oct 25, 2021Oct 25, 2021