Search found 152 matches

by spynaz
Fri Apr 18, 2014 7:40 pm
Forum: General
Topic: Love2D Home Page
Replies: 2
Views: 1749

Love2D Home Page

Nice new design! :D
by spynaz
Thu Nov 14, 2013 8:25 pm
Forum: Support and Development
Topic: UDP Networking [Solved]
Replies: 32
Views: 16718

Re: UDP Networking

bartbes wrote:@spynaz: Could you please stop quoting entire posts? It's in violation of the etiquette.
Well, sorry. :/
by spynaz
Thu Nov 14, 2013 8:24 pm
Forum: Support and Development
Topic: GLSL Shader Help [Solved]
Replies: 3
Views: 3163

Re: GLSL Shader Help

Err is it meant to do this: ShaderText.png Yea that's exactly the problem I'm having. I need help with fixing that. EDIT: Nvm, I FIXED IT MYSELF! :D I figured that when printing text on the screen, each pixel has a different alpha (as opposed to a shape where every pixel has the same alpha) so if e...
by spynaz
Thu Nov 14, 2013 6:17 am
Forum: Support and Development
Topic: GLSL Shader Help [Solved]
Replies: 3
Views: 3163

Re: GLSL Shader Help

Wait I actually did it myself! There is only one problem; it works fine with shapes, but when you apply it on the text it makes it really blurred. Does anyone know how to fix this? (See attached .love file, click "q" to activate shader when running)
by spynaz
Thu Nov 14, 2013 4:13 am
Forum: Support and Development
Topic: GLSL Shader Help [Solved]
Replies: 3
Views: 3163

GLSL Shader Help [Solved]

I want to make a word's letters appear one by one. At first, I did it this way: local text = "" local endText = "Hello, world!") for i = 1, string.len(text) do text = string.sub(endText, 1, i) end And that works fine. But the problem is that it just doesn't look that smooth. So I...
by spynaz
Thu Nov 14, 2013 4:03 am
Forum: Support and Development
Topic: UDP Networking [Solved]
Replies: 32
Views: 16718

Re: UDP Networking

https://love2d.org/imgmirrur/mH38GZl.png So long as you have luasocket2 installed, you can write a server in pure Lua. Ok. But what if I want the user to create the server with a click of a button. How would you run the file from LOVE? Just require it? For a push of a button, I think you only have ...
by spynaz
Wed Nov 13, 2013 3:34 am
Forum: Support and Development
Topic: UDP Networking [Solved]
Replies: 32
Views: 16718

Re: UDP Networking

josefnpat wrote:Image

So long as you have luasocket2 installed, you can write a server in pure Lua.
Ok. But what if I want the user to create the server with a click of a button. How would you run the file from LOVE? Just require it?
by spynaz
Wed Nov 13, 2013 2:48 am
Forum: Support and Development
Topic: UDP Networking [Solved]
Replies: 32
Views: 16718

Re: UDP Networking

bekey wrote:Is this a viable solution? http://www.exitgames.com/
I'm not hosting an online server. I just need to know how I would run the server.lua if it doesn't use the LOVE framework.
by spynaz
Wed Nov 13, 2013 2:46 am
Forum: Support and Development
Topic: 3D rendering
Replies: 28
Views: 12593

Re: 3D rendering

Hey, I've found these resources to be helpful for implementing 3D projection: This short page covers simple 3d wireframe rendering and includes coordinate translation, rotation (About x, y, z axis), scaling, camera view, and perspective transforms. http://www.kmjn.org/notes/3d_rendering_intro.html ...
by spynaz
Tue Nov 12, 2013 8:35 pm
Forum: Support and Development
Topic: 3D rendering
Replies: 28
Views: 12593

Re: 3D rendering

If it's short then render it in Blender (or something) and play back the frames. How would I play the frames in LOVE then? There's a library for playing MJPEG somewhere here on the forums. It works okay as long as the resolution isn't all that high. But the video file will likely be larger than the...