Search found 482 matches

by substitute541
Tue Sep 18, 2012 9:18 am
Forum: Libraries and Tools
Topic: Substitute541's Useful-Code Dump [Closed]
Replies: 3
Views: 1698

Re: Substitute541's Useful-Code Dump [NEW;1 demo]

GijsB wrote:I like the idea :D! But yeah, there's already a wiki page for this kind of stuff ._.
Just so you know. There are no snippets for these kinds of coding yet. Oh and, working on another one. Uploading it in a few minutes.

Edit : Err nevermind. Maybe tomorrow.
by substitute541
Mon Sep 17, 2012 10:00 am
Forum: Libraries and Tools
Topic: Substitute541's Useful-Code Dump [Closed]
Replies: 3
Views: 1698

Substitute541's Useful-Code Dump [Closed]

[This thread is currently under construction. More code will be added soon] Welcome to Substitute541's Useful-Code Dump! This is just a list of my useful code that are useful(duh.) You are free to use the code in here. Although, I prefer people to not copy-and-paste the code. You should be used to t...
by substitute541
Mon Sep 17, 2012 5:08 am
Forum: Libraries and Tools
Topic: The Love3D R1 Library [V 0.4.2]
Replies: 33
Views: 15723

Re: [NEW] The Love3D Project (NEW PROJECTS)

The third demo is bugged. The circle is off screen to the right instead of centered. Looks cool on the 5th demo with the mouse rotation. I think you will get more replies when you have something more than spinning circles. There are also older topics where people have made some impressive pseudo 3d...
by substitute541
Mon Sep 17, 2012 1:41 am
Forum: General
Topic: [STJFPOST]Love3D
Replies: 41
Views: 9379

Re: [STJFPOST]Love3D

viewtopic.php?f=5&t=10777

Apparently I am working on that now... We also have the thread of the same name (Mine is, The Love3D Project...)
by substitute541
Mon Sep 17, 2012 1:39 am
Forum: Libraries and Tools
Topic: The Love3D R1 Library [V 0.4.2]
Replies: 33
Views: 15723

Re: [NEW] The Love3D Project (NEW PROJECTS)

Anyone care to make a reply here? It's been a week without any replies...
by substitute541
Wed Sep 12, 2012 9:01 am
Forum: Games and Creations
Topic: Paddleball(This is just pong..) Beta 0.3.6
Replies: 3
Views: 1644

Re: Paddleball Beta 0.3.6

So, this is just my currently discontinued project. Paddleball :3. paddleballbeta.love You can check out the code if you want (just open it with an archiving software, something like 7-zip, winrar, winzip, etc.) This is just a hobby project, you can use the code if you like to. Warning : random mus...
by substitute541
Tue Sep 11, 2012 10:26 am
Forum: Games and Creations
Topic: Paddleball(This is just pong..) Beta 0.3.6
Replies: 3
Views: 1644

Paddleball(This is just pong..) Beta 0.3.6

So, this is just my currently discontinued project. Paddleball :3. paddleballbeta.love You can check out the code if you want (just open it with an archiving software, something like 7-zip, winrar, winzip, etc.) This is just a hobby project, you can use the code if you like to. Warning : random mush...
by substitute541
Thu Sep 06, 2012 9:40 am
Forum: General
Topic: Avatars: OBEY!
Replies: 763
Views: 1014252

Re: Avatars: OBEY!

Obeying with mah ROBLOX account... le'fail
by substitute541
Thu Sep 06, 2012 9:30 am
Forum: Libraries and Tools
Topic: The Love3D R1 Library [V 0.4.2]
Replies: 33
Views: 15723

Re: [NEW] The Love3D Project

I thought that was a bit obvious. This has nothing to do with your graphics card, 3D modelling with points is still far away. But it will come soon.
by substitute541
Wed Sep 05, 2012 9:48 am
Forum: Support and Development
Topic: Easing features.
Replies: 3
Views: 1797

Re: Easing features.

Actually you can do this in coding. Here it is : function easing (object, dt) object.dx = (targetX - object.x) object.dy = (targetY - object.y) object.vx = object.dx * easing object.vy = object.dy * easing object.x = object.x + object.vx * dt object.y = object.y + object.vy * dt end Call the functio...