Oh boy, look at all those terrific entries assembled by Tabata!! They are just beautiful together. 
I wish I could vote for more than one, but here's my +1 for Camden.

I wish I could vote for more than one, but here's my +1 for Camden.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: Arjunaz78 on Tue 01/11/2011 09:02:27
Did you mean audio number or channel number?or ID number?
which one?
Quote from: Tween Module manualPlease note that currently most of the functions for tweening music and sound effects are written with the old-style audio scripting system, which is the default up to AGS version 3.2.
If you're using AGS 3.2 or later and would like to use these functions, you have to set the "Enforce new-style audio scripting system" to False. Either way, the Tween module is compatible with AGS 3.2 or later versions.
Better audio support will (hopefully) come in a future version.
Quote from: Snarky on Fri 28/10/2011 15:44:15
Oh yeah, I forgot that the Tween module does volume as well. That's your best bet, every time.
// Fade out:
int trans = longWindedSound.Volume;
while (trans > 0) {
trans--;
longWindedSound.Volume = trans;
Wait(1);
}
// Fade in:
int trans = longWindedSound.Volume;
while (trans < 100) {
trans++;
longWindedSound.Volume = trans;
Wait(1);
}
QuoteI vote for Tabata!
..ow wait... no deadline yet
Quote from: Ilyich on Wed 28/09/2011 20:25:48
Since there were no new votes for almost 2 weeks, and it's pretty obvious who the winner is - I think it will be safe to simply move on and start a new blitz. I'm sure no one will mind, right? Congrats on a great entry and a well deserved victory, zyndikate
Quote from: Darius Poyer on Thu 22/09/2011 12:16:44
Not really interested in participating, so this is not a real entry, but I did this:
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.111 seconds with 14 queries.