V3ctors All Day
This weekās lessons covered a large amount of Vector math and ways in which to visually understand it.

#ryland grace#phm#rocky the eridian#project hail mary spoilers



seen from Australia
seen from United States
seen from United States

seen from Netherlands
seen from Ukraine
seen from United States
seen from China
seen from Malaysia

seen from Malaysia

seen from United States

seen from Australia
seen from China
seen from United States

seen from United States

seen from United States

seen from United States
seen from Malaysia
seen from China

seen from China
seen from United States
V3ctors All Day
This weekās lessons covered a large amount of Vector math and ways in which to visually understand it.
The Thirteenth Hour Podcast #367: Custom Action Figure Updates, Final Faction, and Rocketeer Video Game Updates
Making a 3.75" custom #Rocketeer figure from an Avengers Iron Man figure, Thirteenth Hour figure updates, and making pixel art and a full backstory for the Rocketeer game!
The Thirteenth Hour Podcast #367: Custom Action Figure Updates, Final Faction, and Rocketeer Video Game Updates https://archive.org/download/podcast-367/Podcast%20367.mp3 Ā This week, I talk a bit about a few concurrent projects such as making 3.75 inch Rocketeer figures from a 3.75ā³ Iron Man toy as well as the Rocketeer video game Iāve been working on. The Rocketeer prototype so far with theā¦
View On WordPress
The Thirteenth Hour Podcast #363: Starting to Make Video Games Again!
Never thought I'd say this, but I decided to start making games again after discovering @gdevelopapp. So, the first game to learn the program will be none other than a short #Rocketeer side scroller. I can even reuse some #pixelart from before!
The Thirteenth Hour Podcast #363: Starting to Make Video Games Again! https://archive.org/download/podcast-363/Podcast%20363.mp3 This week, I talk a bit about two upcoming projects ā starting to make video games again after a few decades of not doing it!Ā Though Iāve used a number of the animations and sprites I made in various things, most recently the music video of Logan using the music Jeffā¦
View On WordPress
Como estou produzindo um #shmup eh bom ficar ligado no que estĆ” rolando no mercado lendo a @shmupmania pra saber as novidades dos jogos de navinha #spacesaviourspecial #indiegame #gamesdevelopment (em Campinas, Sao Paulo) https://www.instagram.com/p/CbppcKEuyoK/?utm_medium=tumblr
C# Unity Revision Notes - Part 2: Different Types of Operators
OperatorĀ [Programming] - A symbol that tells the compiler to perform specific mathematical or logical manipulations
Compiler - Converts high-level programming languagesĀ [The last tab (4): āAssem/Interp/Compilerā has the most relevant information] (That use human words) to low-level programming languages/machine code [E.g.: C# down to Binary Code (Uses 0ā²s & 1ā²s)]
--------------------------------------------------------------
The Main Operator Types are:
Arithmetic Operators [Maths]:
+ (Plus) - (Minus)
* (Times) / (Divide)
% (Modulus)
++ (Add 1 each Time) -- (Minus 1 each Time)
Relational Operators [Comparisons]:
== (Are they equal?) != (Are they NOT equal?)
> (Is the left value greater than?) < (Is the right value greater than?)
>= (Is the left value greater than or equal to?) <= (Is the right value greater than or equal to?)
Logical Operators:
&& (And - If both are true...)
|| (Or - If either are true...)
! (Not - If the opposite is true...)
Assignment Operators:
= (Assign value)
+= (Adds the two variables then assigns to the left variable)
-= (Subtracts the right variable from the left, then assigns to the left variable)
etc.
--------------------------------------------------------------
A programmer can access components within Unity using the āDot Operatorā (ā.ā) and can control these components through scripts. Using the āDot Operatorā is the equivalent of typing up an address (E.g.: āCountry.State.Suburbā) - or opening up files to access files within.
For example, in the line of code below (Figure.1), the programmer asks Unity to find the renderer of the GameObject the script is attached to, access the āmaterialā of the GameObject within the renderer, then access the ācolorā sub-category within the material. Once the color of the GameObject is found, the programmer can change the color of the material on the GameObject to red using the āAssignment Operatorā: ā=ā.
Figure.1 (Change-Material-Color.jpg, 2020).
Extra Notes:
Boolean Values: 1 = True, 0 = False
UseĀ āDebug.Logā to get the Unity console to display any variable/result - for testing purposes
Leaving comments within scripts is a way for programmers to quickly communicate with one another about how each script works
Use ā//ā to leave a one-line comment within the script, or use ā/ā + ā*ā before a comment &Ā ā*ā + ā/ā at the end of a comment if it takes up multiple lines
The below screenshot shows an example of the two different ways comments can be written within a script [Comments in the image = green text]:
Figure.2 (CommentsExample.jpg, 2021).
--------------------------------------------------------------
References:
Change-Material-Color.jpg [Screenshot] (2020). Norman, H. Perth, Australia
CommentsExample.jpgĀ [Screenshot] (2021). Norman, H. Perth, Australia
--------------------------------------------------------------
<ā BACK
C# Unity Revision Notes - Part 1: Variables & Functions
āScriptsā - are considered to be āBehaviour Componentsā within Unity. They are applied to GameObjects & can be seen within the āInspectorā (Unity UI). Whatever āinstructionsā are typed within a script attached to a particular GameObject, apply to that specific GameObject. The act of typing up a new script or editing an existing one is called scripting (A.K.A: Programming).
āStatementā - A single line of code (that ends in a semi-colon - in C#).
āVariablesā - represent/hold information (likeĀ ādigital boxesā). There are different types of variables that hold different types of information:
Variable Types:
int =Ā āIntegerā - Whole numbers
float =Ā āFloating Point Numbersā - Decimals
bool =Ā āBooleanā - True or False
string = Words/Sentences - e.g.: āHello World!ā
char =Ā āSingle Charactersā - e.g.:Ā āAā
Just below (Figure.1) is an example of how a variable is typed up in C#. One starts by specifying the variable type, then gives the specific variable a name, then assigns information (data) for it to hold using the āAssignment Operatorā (ā=ā). Variable names should be written in ācamelCaseā.
Figure.1 (VariableStructure.jpg, 2020).
Establishing the variable type and the name of the variable is theĀ āDeclarationā of the variable. TheĀ āInitializationā of the variable is once the variable is has been assigned specific information to be used within the script (Figure.2).
Figure.2 (Declaration&Initalization.jpg, 2020).
--------------------------------------------------------------
āFunctionsā - (also known asĀ āMethodsā) - are blocks of code dedicated to a particular purpose which can be called from other parts of your code. They take in variables to use and āreturnā variables (as results) after Unity is finished performing the tasks that make up the function. [āVoidā type functions are the only functions that donāt return anything (The word āVoidā itself means ānothingā)].
As functions can be ācalledā more than once, they are a great way to optimise code. If a programmer reuses code that has already been typed up as much as possible, then that saves them time and effort typing up new code.
The Basic Structure of All Functions (Figure.3):
Figure.3 (FunctionStructure.jpg, 2020).
āVisibilityā refers to whether a function is set as āPrivateā orĀ āPublicā (Both variables & functions can beĀ āpublicā orĀ āprivateā. If not specified, they areĀ āprivateā by default. Public functions/variables are accessible within other scripts and within the Unity Editor)
The āReturn Typesā to choose from are the same as the variable types (+Ā āVoidā)
The āFunction Nameā should be a name that indicates what the function does for the sake of clarity (& should be done in āPascalCaseā).
āParametersā - WhatĀ āoutsideā info needs to be fed into a function just before itās called in order for it to work (In the form of values &/or references)
One can call a function simply by typing the name of the function and adding curly braces for the parameters that are needed. If there arenāt any, then theyāre left bare (E.g.: FunctionName();) (Figure.4).
Figure.4 (CallingFunction.jpg, 2020).
A function that has a result requires a declared variable to hold this end result within, before this information can be sent out to other parts of a script using a āreturn statementā at the end of the function. (One can call a function within another function).
Here are some examples of specific functions that already exist with Unity from the beginning and their purposes: (Figure.5).
Figure.5 (ExampleFunctions.jpg, 2020).
--------------------------------------------------------------
References:
CallingFunction.jpg [Screenshot] (2020). Norman, H. Perth, Australia
Declaration&Initalization.jpg [Screenshot] (2020). Norman, H. Perth, Australia
ExampleFunctions.jpg [Screenshot] (2020). Norman, H. Perth, Australia
FunctionStructure.jpg [Screenshot] (2020). Norman, H. Perth, Australia
VariableStructure.jpgĀ [Screenshot] (2020). Norman, H. Perth, Australia
--------------------------------------------------------------
<āBACK
This is Adam Abqary. Heās 9 years old. Besides playing game, he loves to develop games too. Previously we learned using Buildbox together. But when he wanted to upgrade and learn Unity, unfortunately I am not able to guide him š so he has to get his Uncle Zul to help teach him Unity. And now he has learned Roblox Studio on his own. Last few months he also did almost all the courses in Hour of Code by himself - he spent time watching the videos and learning and try to overcome the challenges by himself as I am a bit tied up with work commitments. Currently, every morning he will try develop in Roblox Studio - i think this is like the Robloxās game world probably? And I hope he will be able to achieve success in his quests. What do I need to do to help him become better in this? #adamabqary #gamesdevelopment #learning (at Bandar Baru Bangi) https://www.instagram.com/p/CIXOcaLpf1m/?igshid=qnaqlvh6re76
C-R-E-A-T-E Your Own Games And Sell Them!
Yes...your very own apps and games!
You and your family members too can have some
good quality family time
by creating simple but great applications
via the GOLD RUSH of apps and games creation with
NO PROGRAMMING SKILLS!
Have your very own āFlappy Birdā-like app!
C-R-E-A-T-E your world class app or games
and aim to get on top of App Store -- and also aim for that
ā1,000sā of downloads through
$UCCE$$FUL APPS & GAMES M-A-R-K-E-T-I-N-G!
...YOUR VERY OWN APPS & Ā GAMES IN APP STORE!!
Become The Best By Modelling The Best! -- Tony Robbins
Hereās your
i-Phone and i-Pad
MULTIMEDIA GAMES & APPS D-E-V-E-L-O-P-M-E-N-T COURSEĀ
>> Ā Ā http://bit.ly/MOBILE_APPS_and_GAMES_CREATION