score icon indicating copy to clipboard operation
score copied to clipboard

Mapper Device shouldn't require "write", "read" or "bind"

Open thibaudk opened this issue 4 years ago • 1 comments

in this example

import Ossia 1.0 as Ossia

Ossia.Mapper
{
    function createTree() {
        return [
        {
            name: "Branch",
            type: Ossia.Type.Int,
            write: function(v) { return v.value; }
        }
        ];
    }
}

the write function is useless, but required to create a simple "Branch" parameter. otherwise it is instantiated as an empty node

thibaudk avatar May 28 '21 18:05 thibaudk

how's this issue with the latest work that was done ?

jcelerier avatar Feb 14 '22 10:02 jcelerier