Friday 19 June 2020

Game Journalism Day 1 - The Forest

Where I started, The plane crash site
Bench with a small boat near the coast.
A village created by the cannibals
A campfire cooking food and a spear (weapon in my hand)
Deer head I killed and got raw meat from
Loot on the small boat (soda and gas cans)
What type of game is this - Forest is an open-world survival horror game. Where you have to survive on the peninsula by looting structures and using natural resources while defending off the cannibals.

Explain what you see and how to play the game - As I start up the game I am in a cutscene where I'm in the plane with my son then the plane get struck down and I blackout. When the plane crashed I woke up to see my son get taken away a cannibal, then I black out again. After I wake up I have to go around looking resources and loot around, and the goal is to find my son.

Monday 15 June 2020

Sketchup LESSON 4: Simple 3D Design Example for 3D Printing

I started by making a 75mm x 25mm rectangle and raising it to 25mm. Next, I pushed the holes 10.25mm in and raised the pegs 10mm, so the pegs have room to fit. To finish I added my name and coloured everything.
I started with a 50mm x 50 mm square I raised 25mm.I pushed the holes 10.25mm in and raised the pegs 10mm, so they can fit. To finish I added my name and coloured everything.

Friday 5 June 2020

Sketchup LESSON 3: Printing Sketchup Designs on a 3D Printer

First I made a 1by1 square and pulled it up with the pull tool by one inch to make a cube, then I added x,y,z to the sides. I added my name and for the face I made a circle and pull it out a little and make two circles and a rectangle and pushed them all in to make a o_0 face. lasty I colored everything in.

Friday 29 May 2020

Sketchup Lesson 2 Rubic's Cube

First I made a 5 by 5 cube and iit into a 3 by 3 grid with a 2' of space in between. Then I copied the 3 by 3 layer up two times. I colored it in and add the pillars.
I added on another row to the side to make it 4 wide then a row on top and a row on the back then recolor and readded the pillars

Thursday 28 May 2020

Sketchup Lesson 1 Tiles

I made a 3 by 3 of rectangles all 3' apart. Then I copied it 3' above.
I made a 12'by12' and 6'by6' squares to match the pattern. And copied into a square.
I made a 12'by24' and 24'by12' squares and made a row to match the pattern and then i copied it and made 5 other rows to match the pattern

Sunday 24 May 2020

Saturday 23 May 2020

JS Drawing and Animation Day9

Today i learned how to loop code, this very useful and helps speeds up some coding instead of putting each line of code over and over. Next I will finsihed looping.

Thursday 21 May 2020

JS Drawing and Animation Day8

Today I did the Second part of If statements. Pretty much the same but with more steps and I also learn 'else' code for when i need multipe if statements.Next I'll be learning looping

Wednesday 20 May 2020

JS Drawing and Animation Day7

Today I worked on If statements in js. During these assignments I learned how to active code if something is happening ex Mouse draws a circle if my mousebutton is pressed. And I also learn to use this with numbers like to check if the number was greater or less than zero ex rect 20,20,20,20 if number>0 Next Ill be doing part 2 of If Statements

Monday 27 April 2020

JS Drawing and Animation Day6

Today I did Functions. They are used to make blocks of code usable multiple times. To create a function, we make a variable for it ex var makesquare =function(){ }; then we put code in the {} ex var makesquare = function() {rect(200,200,10,10);}; now all we have to do is type makesquare(); and it make the square and we make it so we can change the postion by in function making the x and y into variables that we determined. ex var makesquare = function(Posx,PosY){rect(200,200,10,10);}; now typing makesquare(250,204); will change the postion and u can the other ones too. Next Ill be learning logic and if statements.

Saturday 25 April 2020

JS Drawing and Animation Day5

Today I learned about text and strings in JS. It wasn't that hard. The next day I will be learning functions.

Thursday 23 April 2020

JS Drawing and Animation Day4





Today I did the bonus Resizing variables. I learned how to use variables to resize multiple objects by
using mathematical operators to calculate numbers and create expressions. Ex  var x=3
(x,x+2) I would need to change the x var to change both of them.

Tuesday 21 April 2020

JS Drawing and Animation Day3



Today I learned how to make interactive programs. By putting mouseX and  mouseY where the x and y position would be. That makes it so it follows the mouse.This can be used in multiple ways like drawing programs or games. Tomorrow I'll being doing resizing with variables and Text and strings.



Monday 20 April 2020

JS Drawing and Animation Day2

JS Drawing and Animation Day2

 On day 2 I learn how to use variables and to animate. Variables are used to make animating easier by being able to move multiple object with the same variable.  I learned how to move objects by giving them a position then adding or subject that number so it moves ex Var positionx = 200             positionx += 1. The next day I will be learning
Interactive programs.


Sunday 19 April 2020

JS Drawing and Animation Day1

JS Drawing and Animation Day1




Today I started the intro to JS drawing and animation on khan academy. I have competed the drawing and colouring sections , which taught me how to draw shapes like circles, squares,lines and to colour them with commands. A useful tip I got is to organize my code with subscripts, so I can tell what each of my lines do, very easily.

Next time I will  be learn  variables and animation basics.