Added inline inputs (blocks still need updating)
This commit is contained in:
@ -1,8 +1,14 @@
|
||||
module.exports = {
|
||||
name: "Caesar",
|
||||
inputs: {
|
||||
text: "Text",
|
||||
shift: "Shift"
|
||||
text: {
|
||||
name: "Text"
|
||||
},
|
||||
shift: {
|
||||
name: "Shift",
|
||||
inline: true,
|
||||
type: "number"
|
||||
}
|
||||
},
|
||||
output: true,
|
||||
execute: function({text, shift}, elem){
|
||||
|
@ -1,7 +1,9 @@
|
||||
module.exports = {
|
||||
name: "Output",
|
||||
inputs: {
|
||||
input: "Input"
|
||||
input: {
|
||||
name: "Input"
|
||||
}
|
||||
},
|
||||
output: false,
|
||||
execute: function({input}, block){
|
||||
|
Reference in New Issue
Block a user