AppGameKit Classic

AppGameKit Classic

33 个评价
AppGameKit Getting started with coding part 1 - Starting a project.
由 thescenecommander 制作
A guide to starting coding with AGK 2. Starting your own project.
   
奖励
收藏
已收藏
取消收藏
Starting a project in AppGameKit
Hi,

The video below talks first time users through starting a simple project in AppGameKit and will result in the code below. If you'd like to try the example out for yourself, you can simply cut and paste the code beneath the video into the AppGameKit IDE and click Run.


// Project: Text Example
// Created: 2014-11-21

// set window properties
SetWindowTitle( "Text Example" )
SetWindowSize( 1024, 768, 0 )

// set display properties
SetVirtualResolution( 1024, 768 )
SetOrientationAllowed( 1, 1, 1, 1 )

CreateText (1,"Hello World")
SetTextSize (1,30)

do

SetTextPosition (1,390,300)
Sync()

loop
14 条留言
Whaaat 2021 年 7 月 30 日 上午 3:07 
video doesnt available (
MadCat 2015 年 11 月 2 日 上午 12:29 
this just dose not work on my one
Robi 2015 年 7 月 8 日 下午 10:24 
I heard this app can compile build and run C++ source files. How do I get it to work with something as simple as displaying "Hello World!" like this...

#include <iostream>
using namespace std;

int main(){

cout << "Hello World!" << flush;

return 0;
}

I'm learning C++ and I want to code in C++ to make games.
thescenecommander  [作者] 2015 年 4 月 20 日 上午 8:31 
Hi,

I'm afraid I've been very busy with other pressing issues. If you've something you'd like a tutorial on, please let me know and I'll see what I can do.
JoelMayerProds 2015 年 4 月 19 日 上午 1:32 
Please create more Videos like this, AGK is in desperate Need for good Beginner Tutorials. I would use it much more but i'm not a Programmer and when you're starting from Scratch it's very hard to find enough Resources...
Wolfbane 2015 年 2 月 1 日 上午 6:45 
Thanks, i bookmarked it. I'm an absolute beginner so any help i can get is apreciated :)
thescenecommander  [作者] 2015 年 1 月 30 日 上午 4:01 
Hi,

We don't but that's not a bad idea. You may also find our community forums useful. There are a lot of experienced users who are very often able to help beginners.

http://forum.thegamecreators.com/?m=forum_read&i=41
Wolfbane 2015 年 1 月 29 日 下午 2:04 
Do you have a website where you post them as well ?
thescenecommander  [作者] 2015 年 1 月 29 日 上午 10:20 
I'm glad you like them, I've a lot more planned. It's a busy time at The Game Creators, but I hope to get back to them next month.
Wolfbane 2015 年 1 月 28 日 下午 2:43 
Hope to see many more :)