This file contains hidden or 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
| extends Node | |
| func _input(event): | |
| if Input.is_action_just_pressed("mouse_capture"): | |
| Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) | |
| if Input.is_action_just_pressed("mouse_release"): | |
| Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) |
This file contains hidden or 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
| function myFunction() { | |
| } | |
| //trigger this funciton via a Form Submit trigger | |
| function handleResponses(e) | |
| { | |
| var sourceSheet = e.range.getSheet(); | |
| var isScript = sourceSheet.getSheetId() == SpreadsheetApp.getActive().getSheetByName("Scripts").getSheetId(); | |
| var isEvent = sourceSheet.getSheetId() == SpreadsheetApp.getActive().getSheetByName("Events").getSheetId(); |
This file contains hidden or 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
| <!-- | |
| Change polling sidebar based from | |
| //https://gist.github.com/tanaikech/f27d427f07b20ca9fedec21e643c4a3e | |
| Inkjs runtime+ compiler from https://github.com/y-lohse/inkjs/releases/tag/v2.2.2 | |
| Ink js webplayer from https://yannick-lohse.fr/inkjs/ | |
| --> | |
| <body> |