Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How are software and game templates designed?

please don't mind my question since I don't know much about software because I come from a web perspective.. For example, in web css is used for the design and appearance

so..

How are the designs, templates, and environments created for software and games made with programs like c++ and java?

Are they designed with the same languges?

like image 772
avon_verma Avatar asked Jan 11 '11 07:01

avon_verma


People also ask

What is the game design process?

The game design process can be divided into 3 stages (similar to filmmaking) - pre-production, production, post production. Here is a comprehensive look at what is involved.

What are the 3 stages of game design?

Video game development is typically divided into 3 stages: pre-production, production, and post-production.


1 Answers

Are they designed with the same languages?

It depends on how the game developer has decided to do it.

  • They could be implemented in (just) the coding language; e.g. C++ or Java.
  • They could be implemented in part using some language provided by a standard games engine or framework ... or a more general (non-gaming) graphics / presentation framework ... or some general purpose scripting language (with an embeddable interpreter).
  • They could be implemented in part using a game-specific language implemented by the game developer as part of his/her.

Or some combination ...

like image 86
Stephen C Avatar answered Sep 30 '22 02:09

Stephen C