Search found 250 matches

by D0NM
Mon Sep 21, 2020 2:24 pm
Forum: Ports
Topic: Love.js - A Direct Emscripten Port
Replies: 224
Views: 508230

Re: Love.js - A Direct Emscripten Port

pgimeno , You are right! I'll follow GLSL ES 1.0. And to all the readers of this thread: This LOVE2D function might help u finding some GLSL compilation warnings and errors. https://love2d.org/wiki/Shader:getWarnings I eventually found that I sometimes index var4 arrays with indexes that are greate...
by D0NM
Mon Sep 21, 2020 1:07 pm
Forum: Ports
Topic: Love.js - A Direct Emscripten Port
Replies: 224
Views: 508230

Re: Love.js - A Direct Emscripten Port

Note that in WebGL you are not allowed to initialize your externs so: extern number scale = 1; Well. True. But it used to work. You do not see shaders compilation warnings automatically. Should become: uniform float scale; I needed an integer length of a dynamic array. GLSL demands constants to be ...
by D0NM
Sun Sep 20, 2020 5:44 pm
Forum: Ports
Topic: Love.js - A Direct Emscripten Port
Replies: 224
Views: 508230

Re: Love.js - A Direct Emscripten Port

deleted: the reported problem in my post doesn't exist
by D0NM
Sun Sep 13, 2020 7:44 am
Forum: Ports
Topic: Love.js - A Direct Emscripten Port
Replies: 224
Views: 508230

Re: Love.js - A Direct Emscripten Port

Dear friends!
This lovejs is such a cool think
It should be way more popular. Now trying to see where does our Zabuyaki stop working with lovejs.
by D0NM
Sat Sep 05, 2020 6:16 pm
Forum: Libraries and Tools
Topic: turtle.lua - Drawing library
Replies: 16
Views: 30470

Re: turtle.lua - Drawing library

It looks so cool.

I've made about video 20 lessons about Lua + Turtle GFX.
I used the turtle from ZeroBrane Studio edu pack.
http://notebook.kulchenko.com/education ... th-turtles
by D0NM
Sat Jun 20, 2020 6:43 pm
Forum: Support and Development
Topic: OpenGL error after updating windows
Replies: 5
Views: 6276

Re: OpenGL error after updating windows

FloatingBanana wrote: Sat May 30, 2020 8:29 pm I'm using a desktop pc with an integrated GPU only (Intel g45/g43 express chipset)
Try to use this driver installer. instead of shady driver booster
https://sdi-tool.org/
by D0NM
Sat Jun 20, 2020 6:33 pm
Forum: Support and Development
Topic: Can I use spritesheets with löve
Replies: 5
Views: 4993

Re: Can I use spritesheets with löve

Can I use spritesheets with löve ? I hadn't found anything in the docs :cry: This nifty tool could help u to obtain sprites quads (regions) from the spritesheet and generate a ready to use .lua file https://github.com/25A0/Quadtastic https://raw.githubusercontent.com/25A0/Quadtastic/master/screensh...
by D0NM
Sat May 23, 2020 6:26 pm
Forum: Support and Development
Topic: Different Controller GUID for different LOVE versions?
Replies: 4
Views: 4733

Re: Different Controller GUID for different LOVE versions?

In LOVE 0.10 was used older version of the SDL gamepads DB. (which is not supported by that open source gamepads DB) In LOVE2D 11.x is used this one 'Game Controller DB for SDL in 2.0.10 format' https://github.com/gabomdq/SDL_GameControllerDB The GUIDS were changed. Even some buttons mappings were c...
by D0NM
Sat May 23, 2020 6:09 pm
Forum: Support and Development
Topic: 2 gamepad issue
Replies: 5
Views: 5846

3 gamepads issue ))

fyi there is an open source DB of gamepad mappings # Game Controller DB for SDL in 2.0.10 format # Source: https://github.com/gabomdq/SDL_GameControllerDB To load the DB use this function: love.joystick.loadGamepadMappings( "somePAth/gamecontrollerdb.txt" ) --------------------- back to th...
by D0NM
Sat May 23, 2020 5:58 pm
Forum: Games and Creations
Topic: Love Not Recognizing Gamepad
Replies: 2
Views: 6895

Re: Love Not Recognizing Gamepad

hi! To have more supported gamepads you might like to use this DB.
# Game Controller DB for SDL in 2.0.10 format
# Source: https://github.com/gabomdq/SDL_GameControllerDB

To load the DB use this function:

Code: Select all

love.joystick.loadGamepadMappings( "somePAth/gamecontrollerdb.txt" )