DS

Results 320 comments of DS

If you do this, you should also properly convert the vectors. (Minetest currently just passes vectors from its left-handed coordinates system, but openal uses a right-handed one. The sounds are...

> > If you do this, you should also properly convert the vectors. (Minetest currently just passes vectors from its left-handed coordinates system, but openal uses a right-handed one. The...

I don't think we have an issue about ffi stuff. I've tried some time ago to implements parts of the minetest api via luajit ffi, see . The performance results...

Hm, saving user names would maybe be really useful for those who have names that are not accepted on some servers (eg. because it's too short) and so have to...

Some suggestions: * The push and read functions could be called in lua to reduce the number of C++ to Lua calls (which are expensive, AFAIK). For example: ```lua objref_methods.set_pos...

Documentation is missing. Also, could you name one or two concrete usecases? (I'm not asking to challenge the legitimacy of this feature, but to judge the API. Ie. it might...

> > Sadly, the sound interval / the interval in which the item "swings" is hardcoded. > > Isn't that equal to the `full_punch_interval`? `full_punch_interval` is only used when punching...

No objection from my side. You're right, this deprecation was probably a bad idea, and not justified. ------------------------ >Hard disagreement here: Multiplication of vectors denotes the dot product in maths...

( #8914 introduced the doc.) Tested, UTF-16 seems indeed to be a problem. If I do for example: ```lua local mod_storage = minetest.get_mod_storage() local str = "baum\xe4birne" local str_loaded =...

> A feature flag would be the wrong approach here, you don't want to burden mods with somehow manually checking which backend is being used. > Ideally all backends or...