Arvutiteaduse instituut
Courses.cs.ut.ee Arvutiteaduse instituut Tartu Ülikool
  1. Kursused
  2. 2026/27 sügis
  3. Mängumootorid (LTAT.02.018)
EN
Logi sisse

Mängumootorid 2026/27 sügis

  • Main
  • Schedule
    • PICO-8
    • Godot
    • Unity
    • Unreal
    • Unreal Networking
  • Links

More information about computer graphics field in ICS of UT

Homepage: https://cgvr.cs.ut.ee/

Mailing list: aine.ati.arvutigraafika@lists.ut.ee

List of Free Game Dev Software

  • PixiEditor - Editor for raster, pixel and vector art
  • Blender - 3D creation suite for modelling and animations
  • Material Maker - Node-based material and texture creation tool
  • Audacity - Sound editing tool
  • Resonic - Audio Player and Browser
  • Davinci Resolve - Video Editing

Prequisite example

Before taking this class, you have to be familiar with object-oriented programming. If you have learned Java or C# in another course not listed under prerequisite courses, read the following example. Only if you fully understand what the code does and know each keyword, such as class, protected, static, private, final, void and new, without using Google or AI, then you are ready for this class. Write to the teacher to be registered for the course.

class Entity {
    protected int health = 100;
}

class Player extends Entity {
    static int playerCount = 0;

    private String name;
    private final int maxHealth = 100;

    Player(String name) {
        this.name = name;
        playerCount++;
    }

    public void damage(int amount) {
        health -= amount;
        System.out.println(name + " took " + amount + " damage");
    }

    public static void showPlayers() {
        System.out.println("Players: " + playerCount);
    }
}

public class Main {
    public static void main(String[] args) {
        Player player = new Player("Hero");
        player.damage(25);
        Player.showPlayers();
    }
}
  • Arvutiteaduse instituut
  • Loodus- ja täppisteaduste valdkond
  • Tartu Ülikool
Tehniliste probleemide või küsimuste korral kirjuta:

Kursuse sisu ja korralduslike küsimustega pöörduge kursuse korraldajate poole.
Õppematerjalide varalised autoriõigused kuuluvad Tartu Ülikoolile. Õppematerjalide kasutamine on lubatud autoriõiguse seaduses ettenähtud teose vaba kasutamise eesmärkidel ja tingimustel. Õppematerjalide kasutamisel on kasutaja kohustatud viitama õppematerjalide autorile.
Õppematerjalide kasutamine muudel eesmärkidel on lubatud ainult Tartu Ülikooli eelneval kirjalikul nõusolekul.
Courses’i keskkonna kasutustingimused