bookmate game
en
Vahe Karamian

Introduction to Game Programming: Using C# and Unity 3D

Уведоми ме, когато книгата е добавена
За да прочете тази книга, качете я във формат EPUB или FB2 в Bookmate. Как се качва книга?
This book is written with two objective in mind, first, to introduce the reader to the concepts of programming using C#, second, to put into practice the concepts in a fun and entertaining way by developing computer games and game design concepts.

The book is intended for specific audience. It is assumed that the reader has a passion for the study of computer science, and that they have a passion in game design and development. It is also assumed that the reader is proactive and that they would have the ability to engage on a deeper level on their own.

What other topic would have such an attraction compared to game design and development? The future of Human Computer Interaction is going to be through Virtual Reality and Augmented Reality in the coming years. This books will give you the building blocks for the path-way to the future.
Тази книга не е налична в момента
312 печатни страници
Оригинална публикация
2016
Вече чели ли сте я? Какво мислите за нея?
👍👎

Впечатления

  • electrowolfсподели впечатлениепреди 6 години
    👍Струва си да се прочете
    💞Обичам я до смърт

Цитати

  • polymarinaцитирапреди 4 години
    // The parameter x is passed by reference.
    // Changes to x will affect the original value of x.
    static void SquareIt(ref int x)
    {
    x *= x;
    System.Console.WriteLine("The value inside the method: {0}", x);
    }
    static void Main(string[] args)
    {
    int n = 5;
    System.Console.WriteLine("The value before calling the method: {0}", n);
    SquareIt(ref n); // Passing the variable by reference.
    System.Console.WriteLine("The value after calling the method: {0}", n);
    System.Console.WriteLine("Press any key to exit.");
    System.Console.ReadKey();
    }
  • polymarinaцитирапреди 4 години
    [access modifier] return-type method-name([parameter-type parameter-name[]]) { /* method-body */ }
  • polymarinaцитирапреди 4 години
    access modifier] return-type method-name([parameter-type parameter-name[]]) { /* method-body */ }

На лавиците

  • Anton Shabunin
    GameDev
    • 19
    • 9
  • evajisel
    Unity
    • 39
    • 7
  • b7207250222
    Virtual Reality
    • 36
    • 2
  • Станислав Шапошников
    Programming
    • 5
    • 1
  • Roberta P.
    Games For Life
    • 12
fb2epub
Плъзнете и пуснете файловете си (не повече от 5 наведнъж)