Search found 2 matches

by Kimapr
Thu Dec 20, 2018 6:03 pm
Forum: Support and Development
Topic: Love as Lua module
Replies: 8
Views: 5962

Re: Love as Lua module

You can set love.window to false if you have a conf.lua defined, and you can redefine love.run yourself so that it doesn't loop at all; although if you write your main.lua to simply exit at the end, that can also work. Yes, but this way you don't use LOVE as a module - your scripts still run under ...
by Kimapr
Wed Dec 19, 2018 5:21 pm
Forum: Support and Development
Topic: Sending arbitrary data to a shader
Replies: 0
Views: 3049

Sending arbitrary data to a shader

I want to make a voxel raycaster, and to make this I need ability to send arbitrary data to the shader. This is because of uniforms limit and other limitations of GLSL structuring. I tried to make this with VolumeImages, but that does not work. I made a demo to test it, and I found that the result i...