pd-lua
pd-lua copied to clipboard
Lua bindings for Pd, updated for Lua 5.3+
Great external. I suggest to add [declare -lib pdlua] & [declare -path examples] objets In pdlua-help.pd and other help files so everything load correctly. Also I would love to be...
when creating an object I can't use ./myobject, like I can for abstractions and externals
Hi, is there any binary for Win10 64bit? In theory is pd-lua embeddable in libpd? I would like to understand if would be possible to integrate pd-lua in Camomile (...
It expects `lua.h` to be in `/usr/include/lua`. However Homebrew doesn't put it there. ``` $ make cc -I/usr/local/opt/ruby/include -I"/Applications/Pd-0.51-1.app/Contents/Resources/src" -DPD -DVERSION='"0.10.1"' -fPIC -I/sw/include -I/opt/local/include -Wall -W -g -I/usr/include/lua -ftree-vectorize -o...
The next release of Pd will support compiling in double-precision mode. All externals must also be compiled to support it. Apparently pdlua single-precision crashes in double-precision Pd, probably because of...
pd-lib-builder is a Makefile that is used by many external libraries. Much easier to merge improvements from upstream than the old Makefile template (which afaict is no longer maintained). In...
Hi, I just noticed that using the makefile on MacOS Sierra 10.12.6, I was getting the following error: pdlua.c:51:10: fatal error: 's_stuff.h' file not found That's because makefile was looking...
Hi Albert! Today I started working on a basic graphics API for pdlua. The goal is a cross-flavour way to create GUI objects. So far, this is going quite well:...
This Lua error appears if the atoms argument to pd.Class:outlet is anything but a table. The fix is trivial: Check that the atoms argument actually is a table, and, if...
- Paths are now calculated as floating points instead of integers, allowing for better accuracy. This is especially noticeable for Bezier curves. - Small optimisations, reduced the amount of memory...