-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Test.amxd with implicit dependencies and refreeze FrozenTest.amxd to match the updated Test.amxd
- Loading branch information
mkp
committed
Nov 15, 2024
1 parent
3b101ef
commit 2ec44bd
Showing
13 changed files
with
500 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
"use strict"; | ||
|
||
/* | ||
An empty test script file | ||
*/ | ||
|
||
function bang() { | ||
outlet(0,"yes") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
{ | ||
"patcher" : { | ||
"fileversion" : 1, | ||
"appversion" : { | ||
"major" : 8, | ||
"minor" : 6, | ||
"revision" : 2, | ||
"architecture" : "x64", | ||
"modernui" : 1 | ||
} | ||
, | ||
"classnamespace" : "box", | ||
"rect" : [ 312.0, 228.0, 221.0, 176.0 ], | ||
"bglocked" : 0, | ||
"openinpresentation" : 0, | ||
"default_fontsize" : 12.0, | ||
"default_fontface" : 0, | ||
"default_fontname" : "Arial", | ||
"gridonopen" : 1, | ||
"gridsize" : [ 15.0, 15.0 ], | ||
"gridsnaponopen" : 1, | ||
"objectsnaponopen" : 1, | ||
"statusbarvisible" : 2, | ||
"toolbarvisible" : 1, | ||
"lefttoolbarpinned" : 0, | ||
"toptoolbarpinned" : 0, | ||
"righttoolbarpinned" : 0, | ||
"bottomtoolbarpinned" : 0, | ||
"toolbars_unpinned_last_save" : 0, | ||
"tallnewobj" : 0, | ||
"boxanimatetime" : 200, | ||
"enablehscroll" : 1, | ||
"enablevscroll" : 1, | ||
"devicewidth" : 0.0, | ||
"description" : "", | ||
"digest" : "", | ||
"tags" : "", | ||
"style" : "", | ||
"subpatcher_template" : "", | ||
"assistshowspatchername" : 0, | ||
"boxes" : [ { | ||
"box" : { | ||
"id" : "obj-3", | ||
"maxclass" : "button", | ||
"numinlets" : 1, | ||
"numoutlets" : 1, | ||
"outlettype" : [ "bang" ], | ||
"parameter_enable" : 0, | ||
"patching_rect" : [ 113.0, 60.0, 24.0, 24.0 ] | ||
} | ||
|
||
} | ||
, { | ||
"box" : { | ||
"comment" : "", | ||
"id" : "obj-2", | ||
"index" : 1, | ||
"maxclass" : "outlet", | ||
"numinlets" : 1, | ||
"numoutlets" : 0, | ||
"patching_rect" : [ 40.0, 60.0, 30.0, 30.0 ] | ||
} | ||
|
||
} | ||
, { | ||
"box" : { | ||
"comment" : "", | ||
"id" : "obj-1", | ||
"index" : 1, | ||
"maxclass" : "inlet", | ||
"numinlets" : 0, | ||
"numoutlets" : 1, | ||
"outlettype" : [ "" ], | ||
"patching_rect" : [ 40.0, 22.0, 30.0, 30.0 ] | ||
} | ||
|
||
} | ||
], | ||
"lines" : [ { | ||
"patchline" : { | ||
"destination" : [ "obj-2", 0 ], | ||
"order" : 1, | ||
"source" : [ "obj-1", 0 ] | ||
} | ||
|
||
} | ||
, { | ||
"patchline" : { | ||
"destination" : [ "obj-3", 0 ], | ||
"order" : 0, | ||
"source" : [ "obj-1", 0 ] | ||
} | ||
|
||
} | ||
], | ||
"saved_attribute_attributes" : { | ||
"default_plcolor" : { | ||
"expression" : "" | ||
} | ||
|
||
} | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
"use strict"; | ||
|
||
/* | ||
Outputs a bang when it becomes visible. Only passes on incoming bangs when visible. | ||
Note that to be visible for a device in presentation mode, this object must be included in presentation. | ||
*/ | ||
|
||
mgraphics.init() | ||
|
||
function paint() { | ||
outlet(0, "bang") | ||
} | ||
|
||
function bang() { | ||
mgraphics.redraw() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
const path = require('path'); | ||
const Max = require('max-api'); | ||
|
||
// This will be printed directly to the Max console | ||
Max.post(`Loaded the ${path.basename(__filename)} script`); | ||
|
||
// Use the 'addHandler' function to register a function for a particular message | ||
Max.addHandler("bang", () => { | ||
Max.post("Who you think you bangin'?"); | ||
}); | ||
|
||
// Use the 'outlet' function to send messages out of node.script's outlet | ||
Max.addHandler("echo", (msg) => { | ||
Max.outlet(msg); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
table 0 0 0 0 0 100 97 91 86 84 76 73 71 69 65 57 55 50 49 47 43 39 37 32 29 28 28 29 32 33 34 35 37 38 39 42 43 44 45 46 48 49 51 52 53 54 56 59 61 62 64 67 70 71 72 74 82 84 86 92 104 112 117 124 123 118 114 101 95 92 84 72 65 49 39 37 35 32 29 27 25 25 25 25 25 25 26 27 27 27 28 28 28 29 30 31 32 33 34 35 36 37 38 40 44 45 76 80 88 91 99 101 102 104 106 106 107 108 108 108 110 110 110 110 111 111 111 112 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"pattrstorage" : { | ||
"name" : "mystorage", | ||
"slots" : { | ||
"1" : { | ||
"id" : 1, | ||
"data" : { | ||
"test" : [ 1337 ] | ||
} | ||
|
||
} | ||
, | ||
"2" : { | ||
"id" : 2, | ||
"data" : { | ||
"test" : [ 74 ] | ||
} | ||
|
||
} | ||
|
||
} | ||
|
||
} | ||
|
||
} |
Oops, something went wrong.