Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: Alex Trivien on Tue 20/10/2015 10:20:00

Title: [SOLVED]Stuck in making GUI (CT style)
Post by: Alex Trivien on Tue 20/10/2015 10:20:00
Hi everyone.
I'm just a beginner and i have some beginner's troubles =)

So, i wanna make the GUI and interaction like it was realised in "Clock Tower - first fear " on SNES, but now with mouse =))))

Left-click: interact/walk (double click to run)
Right-click: look

Also, the dialog window and inventory is the same window, and it's located in the bottom of the screen.

Yes, i know that is a not hard to make, but not for me =)

So, i stuck and need some HELP =)))



Title: Re: Stuck in making GUI (CT style)
Post by: Snarky on Tue 20/10/2015 10:44:00
This type of interface is usually known as a "two-button" or "two-click" UI, sometimes as a "BASS" (Beneath a Steel Sky) UI. AGS comes with a ready-made template for it: when you start a new game project, just choose that template. (There might be some documentation in the script header file it imports.)

The dialog selection window (is that what you mean, or do you mean the text when people speak shows up there too?) is usually at the bottom of the screen by default, so you just need to move the inventory down there. You can set the screen location of your inventory window as a property on the GUI screen of the editor.
Title: Re: Stuck in making GUI (CT style)
Post by: Alex Trivien on Tue 20/10/2015 11:35:55
Yeah, it's look's like =)))
Thank you !

And about dialogs :  i mean, the discription and thoughts. Like it was here

(http://ic.pics.livejournal.com/iskander_zombie/17864134/1114701/1114701_original.jpg)
Title: Re: Stuck in making GUI (CT style)
Post by: Snarky on Tue 20/10/2015 12:19:52
You can make speech/thoughts look like that by setting Sierra-style speech (in the game options) and adjusting the y-position of the speech window.

I don't think the built-in template includes double-click to run; that may be the most challenging thing to get working.