Users browsing this thread: 1 Guest(s)
Gamedev Lounge 0010
[Image: QhUJ8.png]
Meh. First attempt. I probably won't do a second.
Thanked by:
Not bad, got 250. It's funny how I can see exactly how to code it just from playing Tongue
You may have a fresh start any moment you choose, for this thing that we call "failure" is not the falling down, but the staying down. -Mary Pickford
Thanked by: LeleleleMAXIMUM
wow, this bird really hates cocoa puffs
Thanked by: LeleleleMAXIMUM, puggsoy
I play Angry birds on an I pad. What are you guys playing it on.
[Image: tumblr_mzx6bm02eC1s38z45o1_500.gif]
Anonymous Wrote:...the world is so much simpler if you just dont give a FUCK...
Thanked by:
(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*
[Image: ZRdfkWQ.jpg]
Thanked by: puggsoy
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.
Thanked by:
^i didn't know that
stop making me learn things
[Image: ZRdfkWQ.jpg]
Thanked by:
How come nobody suggested Stencyl when I asked for a game making program?
Thanked by:
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
[Image: ndsMEF0.gif][Image: sig.gif]
Thanked by: Kitsu
i have it but i only tried it once and i didn't quite get it
so
[Image: ZRdfkWQ.jpg]
Thanked by:
(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.
Thanked by:
there's kind of that code mode if u want classic mode
Thanked by:
(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.
Thanked by: Previous, megaMasquerain
How do you make dlls? Does anyone know what you can use it for?
[Image: tumblr_mzx6bm02eC1s38z45o1_500.gif]
Anonymous Wrote:...the world is so much simpler if you just dont give a FUCK...
Thanked by:
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.
Thanked by: Hoeloe, puggsoy


Forum Jump: