Hi!
I’ve set a Rhino Compute server, an appserver and it works fine. The thing is, i have set a text input in my GH file (Get String from Hops component) that i would like to act as a Value List, so i filled its presets.
Rhino Appserver project is, if i’m not mistaken, only dealing with Range, Number and Boolean inputs for now. I’ve been trying to write custom code for String Input but here’s what i get.
{
description: '',
atLeast: 1,
atMost: 1,
treeAccess: false,
default: {
isValid: true,
isValidWhyNot: '',
typeDescription: 'A piece of text',
typeName: 'Text',
qcType: 3,
value: 'A value'
},
minimum: null,
maximum: null,
name: 'My component name',
nickname: null,
paramType: 'Text'
}
Is there a way to collect the presets? Or event better has somebody already implemented a way to deal with String Components in Rhino Compute Appserver?
Thanks in advance!