The VG Resource
Gamedev Lounge 0010 - Printable Version

+- The VG Resource (https://www.vg-resource.com)
+-- Forum: Archive (https://www.vg-resource.com/forum-65.html)
+--- Forum: July 2014 Archive (https://www.vg-resource.com/forum-139.html)
+---- Forum: Creative Zone (https://www.vg-resource.com/forum-86.html)
+----- Forum: Games Development (https://www.vg-resource.com/forum-22.html)
+----- Thread: Gamedev Lounge 0010 (/thread-19334.html)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28


RE: Gamedev Lounge 0010 - Hoeloe - 05-24-2012

[Image: QhUJ8.png]
Meh. First attempt. I probably won't do a second.


RE: Gamedev Lounge 0010 - puggsoy - 05-24-2012

Not bad, got 250. It's funny how I can see exactly how to code it just from playing Tongue


RE: Gamedev Lounge 0010 - Crappy Blue Luigi - 05-24-2012

wow, this bird really hates cocoa puffs


RE: Gamedev Lounge 0010 - ~Axis~ - 05-24-2012

I play Angry birds on an I pad. What are you guys playing it on.


RE: Gamedev Lounge 0010 - LeleleleMAXIMUM - 05-24-2012

(05-24-2012, 12:42 PM)puggsoy Wrote: Not bad, got 250. It's funny how I can see exactly how to code it just from playing Tongue

haha well i'm not really a coder or anything. i bet there are other simpler more efficient ways to do what i did there.

ps: i never learned how to duplicate movie clips. never. *stares wistfully at lake*


RE: Gamedev Lounge 0010 - Hoeloe - 05-24-2012

Well, if you never learned to duplicate clips, chances are you didn't attach them directly from the library either, which is arguably the best way to do it (treating the library object as you would a "class" in an OOP language), so yes, there will be better ways to do it.


RE: Gamedev Lounge 0010 - LeleleleMAXIMUM - 05-24-2012

^i didn't know that
stop making me learn things


RE: Gamedev Lounge 0010 - Medevenx - 05-31-2012

How come nobody suggested Stencyl when I asked for a game making program?


RE: Gamedev Lounge 0010 - Vipershark - 05-31-2012

I keep forgetting Stencyl even exists, considering that it took 20 years to come out.
I just keep pushing it to the back of my mind, thinking it's not out yet.
ahahaha


RE: Gamedev Lounge 0010 - LeleleleMAXIMUM - 05-31-2012

i have it but i only tried it once and i didn't quite get it
so


RE: Gamedev Lounge 0010 - Hoeloe - 05-31-2012

(05-31-2012, 09:04 AM)Vipershark Wrote: I keep forgetting Stencyl even exists, considering that it took 20 years to come out.
I just keep pushing it to the back of my mind, thinking it's not out yet.
ahahaha

I do the same thing.

On top of this, I'm always wary of tools that allow you to make games without code. No matter how good the tool is, there will always be solid constraints on what can be achieved with it, and the simpler the tool, the harsher these constraints will be.


RE: Gamedev Lounge 0010 - Medevenx - 05-31-2012

there's kind of that code mode if u want classic mode


RE: Gamedev Lounge 0010 - Hoeloe - 05-31-2012

(05-31-2012, 10:56 AM)Medevenx Wrote: there's kind of that code mode if u want classic mode

Which more or less defeats the point of getting Stencyl in the first place. If I get a tool designed to make games easily, and use it to program them in, I might as well just learn a more useful programming language.


RE: Gamedev Lounge 0010 - ~Axis~ - 06-05-2012

How do you make dlls? Does anyone know what you can use it for?


RE: Gamedev Lounge 0010 - Previous - 06-05-2012

When in doubt, Google & Wikipedia know.

But in this case, I know, too.

DLLs are Dynamically Linked Libraries, files which contein executable (windows) code but are not executable by themselves. Basically, a DLL file contains various functions etc you can use with another program (-> libraries). They are dynamically linked, which means that any (windows) program can load a DLL and use it to do stuffs. Thus, one DLL can be used by many different programs (avoiding having to put the same code into all these programs). Furthermore, different DLLs with the same set of functions (but different working) can be used to achieve different results. For example, I'm using Andorra2D for my games which comes with two DLLs and depending on which DLL you load and use, it either uses OpenGL or DirectX without the need of changing any code!

You can make DLLs in most major programming languages which output windows binaries: C++, Delphi Pascal, ... (not Java because Java doesn't produce windows binaries). It depends on your compiler and its settings etc.