Today I wanted to take a closer look at an older video where we built a dice roller that used Dot Products to determine which face on a dice was rolled.
You are able to modify the speed of most objects, animations and physics using a single value: Time.timeScale. Modifying this value from itβs default (1) causes the game to run slower (values less than 1) or faster (values greater than 1).
Iβve recently moved into a new space and could use some furniture to help fill the space. Iβd like to create some interesting objects that can help do that and this is the start of a test project to see what we can build.
Hugo Shortcodes are a way to use short snippets in your Hugo site that embed custom parameterized objects. Some built-in shortcodes can embed GitHub Gist code snippets, YouTube videos or Twitter posts.
Lets take a look at what is required to create an online highscore board for your Unity game. Throughout this project weβll take a look at how to create a RESTful web-service, connect it to a database and then expose that web-service to your Unity game.
Lets make a new Minecraft server running Minecraft 1.15 for fun and shenanigans with friends.
Weβll be exploring Spigot, Bungeecord and Docker Compose in order to get this up and running.
Your terminal can maintain a list of directories you have visited by storing them in a stack. You can manipulate this stack using commands like pushd to push a new entry onto this stack or popd to pop an existing entry off of the current stack.
There are a few ways to navigate your shell in terminals. One of the less common but useful ways Iβve found when working with multiple directories takes advantage of the directory stack most terminals maintain.
Letβs build some fun projects together today. Iβm hoping to work on the platforming of a platformer game and - if time permits - also work on some more MC Clone (a new Minecraft mod).
Zenject is a Dependency Injection Container Framework built for .NET that is also compatible with Unity. Lets learn some of the basics of how to get Zenject setup and start injecting components.
C#βs Yield operator allows you to define enumerable sets which can be dynamically generated and are lazily evaluated. This enables a number of fun things that would be difficult otherwise such as infinite lists.
Lets get started building MC Clone a new plugin/mod for minecraft servers running spigot that will allow players to create duplicate parts of the world with different settings.
Lets explore how you can compile a Java file from scratch without an IDE or other tool. All you will need to be able to do this is the Java Development Kit (JDK).