How To Make A Custom Mouse Cursor – Unity
This is a quick guide on how to make a 2D, custom mouse cursor in Unity, from making the texture, getting it into Unity, and then actually using it in your game.
This is a quick guide on how to make a 2D, custom mouse cursor in Unity, from making the texture, getting it into Unity, and then actually using it in your game.
You might be familiar with how to loop over a list, but what about a list of lists? You may not even be sure how to create one. This post will cover very simply how to create, use, and loop over a list of lists.
What Is An Array The best way to picture an array is to think of it as a series of boxes, all in a row. Each box holds a variable, but all of the same type. Below is an example: If we wanted to store an array of integers, or int’s, it might look like this: The…
You might have seen if statements with some confusing symbols: &&, || or !. These are called the logical operators, and are used to create more complicated logic within an if statement. They are: && – the Logical AND operator || – the Locical OR operator ! – the Logical NOT operator Quick Examples But what do they do? I will give some quick examples. if…
This shows you how to check if any key key is being pressed on the keyboard and NOT the mouse in the correct way. There are some incorrect methods shown on the internet elsewhere.
This tutorial teaches you how to keep game objects from being destroyed when loading a new Unity scene. It will preserve them between multiple scenes.
This tutorial teaches how to import 2D pixel art graphics so they are nice and crisp, and then how to chop up your sprite sheets.
This tutorial shows you an easy, secure way to save and load your games data, converting it to binary (machine code), to make it hard for players to modify your data.
If you’ve ever wanted to write a script that could make your sprite flash a different colour or turn them transparent in Unity, there’s an easy way. The following code is C#. Sprite Renderer You’re sprite is contained in a component called the Sprite Renderer. Now if you click on “Color”, you can manually change…
This post is part of a series in learning how to make games with PuzzleScript. If you haven’t read my previous tutorials, I recommend you do so here, as that is assumed knowledge for this post. The Action Command By now we know how to walk around, push blocks and pull blocks, but what if we…