Skip to main content

All about Game development | What to study,Jobs,Packages? Simply Explained by Apna college

Game Development

Game Development


Video Game Industry (2021)$180B

What is Game Dev?

  • Programming
  • 3D Modeling
  • Concept Art
  • Sound Design
  • Indie

Components - Story, Character, Audio, Art, Lightening, Levels, etc.

All about Game development | What to study,Jobs,Packages? Simply Explained by Apna college

----------------------------------------------

All about Game development | What to study,Jobs,Packages? Simply Explained by Apna college



Game Engines (Free & Paid )
  • Unity
  • Source Engine (CS Go, Half-Life)
  • GameMaker
  • Torque & many many more
All about Game development | What to study,Jobs,Packages? Simply Explained by Apna college

As a Beginner, go for Unity for its diversity.

Qualification for Game developer

  • BTech, Mtech, BCA, MCA, Software Diploma (C++, C#, Python, java etc.)
  • Game Design (262 colleges in India): Humanities, Commerce or Science - NID/UCEED (exams)
  • Game Art (Diploma in 2D, 3D art, VFX)

Skills Required to Become Game Developer

  • Experienced with a Game Engine (Unity is good)
  • Programming Languages (C++, C#, Python, etc.)

HOW TO START? Become a Game Developer

> LEARN

  • Step1: text-based games (Zork, Spider & Web...)
  • Step2: 2D games (Mario...)
  • Step3: 3D games (outstanding motions, fps...)



PARTICIPATE / BUILD in Game development

  • Game Jam / Hackathons

WORK Job for Game Developer

  • Freelancing
  • Publishing deal from Video Game Developer (Voodoo)
  • Gamification Companies (Byju's, Zomato, MakeMyTrip)
  • Work for Gaming Studios (Unity, Ubisoft)

Average Salary for Game development

Freshers:
  • Designers (Art, Animation & VFX): 3LPA
  • Engineers: 4.5LPA

  • 2+ years: 10-12LPA
  • 6-8 years: 24+ LPA
In this article, we cover these points:-
  • What is Game Developer
  • What are the Components required for Game Developer
  • Which Application Required to build Game
  • Explain about Unity
  • What are the qualifications required for Game Developer
  • What are the skills needed to become a Game Developer
  • How to start becoming a Game Developer
  • How to participate in Game Jam & Hackathons
  • What is the work we get after becoming a Game Developer
  • What is the Average Salary of a Game Developer
These are the key points discussed in this Article
Thank YOU 

--------------Jai Hinch-----------

Also read: 

Comments

Popular posts from this blog

Raju is a Civil Engineer. He is writing software to automate his work. As a part of his requirement, he wants to calculate the circle diameter, circumference, and area. Help Raju to complete his task. Get radius as input.

OUTPUT

Write functions to implement string operations such as compare, concatenate, string length. Convince the parameter passing techniques Program and Algorithm Computer Science Engineering VTU

STRINGconcatenation #include<stdio.h> #include<stdlib.h> int length (char str[]); int compare (char str1[],char str2[]); void concatenate (char str1[],char str2[]); void main() { char str1[30],str2[30]; int choice,a,i,j; printf("enter 1-string comparision\n"); printf("enter 2-string length\n"); printf("enter 3-string concatenation\n"); printf("enter 4-exit\n"); scanf("%d",&choice); switch(choice) { case 1:printf("enter string 1\n"); scanf("%s",str1); printf("enter string 2\n"); scanf("%s",str2); a=compare(str1,str2); if(a==0) { printf("%s and%s are identical\n",str1,str2); } else { printf("%s and%s are not identical\n",str1,str2); } break; ...