Unity Asset Store Sale (+ Giveaway)

Asset Store Sale For the next couple of weeks, the Unity Asset Store will be having a store-wide sale! I think that this is the perfect opportunity to get more exposure and feedback for my own asset as well as a good opportunity to sell it for a great deal. Open Trivia for Unity For…… Continue reading Unity Asset Store Sale (+ Giveaway)

Unity – UnityEvent

What is a UnityEvent? A UnityEvent is Unity’s built-in event system which allows you to subscribe to events right in the editor. The Unity UI system commonly uses them for example when a button is pressed: How do I use a UnityEvent in my code? All you need to do, is create a public UnityEvent…… Continue reading Unity – UnityEvent

C# – Method Overloading

What is Method Overloading? Method overloading is a way to create multiple methods, which have the same but have a different set of parameters. Then, depending on what parameters the developer has given, the compiler will choose the correct ‘overload’, or throw an error if there is no appropriate overload. Is there an alternative? A…… Continue reading C# – Method Overloading

Binary Numbers 1 – Binary Quiz – Plymouth University

Binary Numbers Quiz 1) The answer is D – 11110 1  1  1  1  0 16 + 8 + 4 + 2 = 30 2) The answer is B – 3.375 1  0  .  0  1  1 2 + 0.25 + 0.125 3.375 3) The answer is C – 11000 1011 + 1101 = —-…… Continue reading Binary Numbers 1 – Binary Quiz – Plymouth University

Binary Numbers 1 – Section 3 (Binary Subtraction) – Plymouth University

Section 3 Exercise 4 A) (Decimal) 3 – 1 = (Binary)   11 – 01 = 11 – 01 = —— (Binary) 10 (Decimal) 2 B) (Decimal) 3 – 2 = (Binary)   11 – 10 = 11 – 10 = —— (Binary) 01 (Decimal) 1 C) (Decimal) 4 – 2 = (Binary)  100 -…… Continue reading Binary Numbers 1 – Section 3 (Binary Subtraction) – Plymouth University

Binary Numbers 1 – Section 2 (Binary Addition)- Plymouth University

Section 2 Exercise 3 A) (Decimal) 3 + 3 = (Binary)   11 + 11 = 11 + 11 = —— (Binary) 110 (Decimal) 6 B) (Decimal) 7 + 3 = (Binary)   111 + 11 = 111 + 11 = —— (Binary) 1010 (Decimal) 10 C) (Decimal) 4 + 2 = (Binary)   100…… Continue reading Binary Numbers 1 – Section 2 (Binary Addition)- Plymouth University

Binary Numbers 1 – Section 1- Plymouth University

What is Binary? Binary is a number system which consists of only 2 digits, 0  and 1. All data that computers process must be converted into Binary at some stage so that it can be used to the computer. Can I find these questions online? Yes, they are publicly available online at the Plymouth University…… Continue reading Binary Numbers 1 – Section 1- Plymouth University

Matrix Operations – Adding/Subtracting

How do you Add or Subtract Matrices? It is super easy actually! All you need to do is Add (or subtract) from the same element on each matrix. Then after writing out the sum for each element in the Matrix you simplify to get your result. e.g. Top-left + Top-left and Top-middle + Top-middle etc.…… Continue reading Matrix Operations – Adding/Subtracting

C# – Tasks – Async/Await

What does Asynchronous mean? In general, Asynchronous means that one thing can occur at the same time as another. Within C#, Asynchronous programming allows the developer to be able to wait for a method to complete before continuing execution of the code. When doing this, the application continues running as normal and is useful for…… Continue reading C# – Tasks – Async/Await