About Store Forum Documentation Contact



Post Reply 
Sounds
Author Message
Marcoso Offline
Member

Post: #1
Sounds
Hi there, I canĀ“t find anything about adding sounds and music into the game. How can I do it? Thanks smile
09-02-2012 08:58 PM
Find all posts by this user Quote this message in a reply
Ogniok Offline
Member

Post: #2
RE: Sounds
There are tutorials for this located in directory: "EsenthelEngineSDK\Tutorials\Source\Advanced\1 - Geometry, Graphics, Gui, Misc, Net, Sound\Sound"
09-02-2012 09:08 PM
Find all posts by this user Quote this message in a reply
Marcoso Offline
Member

Post: #3
RE: Sounds
Every tutorial is there as a C++ file. Is it correct, if I say that sound and other things mentioned in those tutorials are made with C++ codes? smile
09-03-2012 11:49 AM
Find all posts by this user Quote this message in a reply
laugan Offline
Member

Post: #4
RE: Sounds
be sure you opened these files, for example

Code:
if(Kb.bp(KB_SPACE))SoundPlay("../data/sound/metal.ogg"); // play sound on space

i see there ogg. Sounds are simple sounds, but they are played with the help of C++.
09-03-2012 11:55 AM
Find all posts by this user Quote this message in a reply
Marcoso Offline
Member

Post: #5
RE: Sounds
And other things in those tutorials (physics, gui, geometry, graphics...) work with the help of C++ too, right? smile
09-03-2012 03:12 PM
Find all posts by this user Quote this message in a reply
Dwight Offline
Member

Post: #6
RE: Sounds
Here comes the flashlight-hit (Tottel):

All of your game basics can be found in the Tutorials in the tutorial folder hierarchy, of course to be openened with Visual Studio (Express in your case).

If you go through all these tutorials, after having studied C++ and some additional things, you will find that everything will fall into place smile

Welcome to the Indie-gaming industry!
09-03-2012 09:25 PM
Find all posts by this user Quote this message in a reply
Post Reply