-
-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8d8fb53
commit 18fdacb
Showing
151 changed files
with
21,171 additions
and
1,383 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"name": "Desktop features", | ||
"tagline": "A module that provides useful desktop-specific features, such as manipulating the window, toggling the debugger/devtools, and more!", | ||
"version": "0.3.0", | ||
"icon": "monitor", | ||
"authors": [{ | ||
"name": "Cosmo Myzrail Gorynych", | ||
"mail": "[email protected]" | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
module.exports = [{ | ||
name: 'Move this copy along a line stopping at', | ||
name_Ru: 'Переместить эту копию по линии, останавливаясь перед', | ||
type: 'command', | ||
code: 'move template bullet', | ||
icon: 'move', | ||
category: 'Movement', | ||
pieces: [{ | ||
type: 'argument', | ||
key: 'cgroup', | ||
typeHint: 'string', | ||
required: true | ||
}, { | ||
type: 'filler' | ||
}, { | ||
type: 'label', | ||
name: 'store in', | ||
i18nKey: 'store in' | ||
}, { | ||
type: 'argument', | ||
key: 'return', | ||
typeHint: 'wildcard' | ||
}], | ||
jsTemplate: (values) => { | ||
if (values.return !== 'undefined') { | ||
return `${values.return} = this.moveBullet(${values.cgroup}, ${values.precision || 1});`; | ||
} | ||
return `this.moveBullet(${values.cgroup}, ${values.precision || 1});`; | ||
} | ||
}, { | ||
name: 'Move this copy stopping at', | ||
name_Ru: 'Переместить эту копию, останавливаясь перед', | ||
type: 'command', | ||
code: 'move template smart', | ||
icon: 'move', | ||
category: 'Movement', | ||
pieces: [{ | ||
type: 'argument', | ||
key: 'cgroup', | ||
typeHint: 'string', | ||
required: true | ||
}, { | ||
type: 'filler' | ||
}, { | ||
type: 'label', | ||
name: 'store in', | ||
i18nKey: 'store in' | ||
}, { | ||
type: 'argument', | ||
key: 'return', | ||
typeHint: 'wildcard' | ||
}], | ||
jsTemplate: (values) => { | ||
if (values.return !== 'undefined') { | ||
return `${values.return} = this.moveSmart(${values.cgroup}, ${values.precision || 1});`; | ||
} | ||
return `this.moveSmart(${values.cgroup}, ${values.precision || 1});`; | ||
} | ||
}]; |
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
"tagline": "Check for collisions, move copies continuously, and add basic collision avoidance to your copies.", | ||
"tagline_Ru": "Проверяет столкновения, последовательно передвигает копии и предоставляет простые методы обхода препятствий вашим копиям.", | ||
"version": "4.0.0", | ||
"icon": "copy", | ||
"authors": [{ | ||
"name": "Cosmo Myzrail Gorynych", | ||
"mail": "[email protected]" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ | |
"tagline": "A uniform API for any type of pointer devices, be it touchscreens, pen tablets, or mouse.", | ||
"tagline_Ru": "Единый API для всех видов указателей — мышек, тач-экранов, графических планшетов и т.д.", | ||
"version": "1.0.1", | ||
"icon": "ui", | ||
"authors": [{ | ||
"name": "Cosmo Myzrail Gorynych", | ||
"mail": "[email protected]" | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"name": "Sprite Composer", | ||
"tagline": "Create new animations from one sprite, freeing yourself from the necessity to split and stitch frames manually.", | ||
"version": "1.0.0", | ||
"icon": "texture", | ||
"authors": [{ | ||
"name": "Cosmo Myzrail Gorynych", | ||
"mail": "[email protected]" | ||
|
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
"tagline": "Add nice and smooth transitions between levels, or whenever you need them.", | ||
"tagline_Ru": "Добавь красивые плавные переходы между уровнями, или вызови их когда угодно.", | ||
"version": "1.0.0", | ||
"icon": "monitor", | ||
"authors": [{ | ||
"name": "Cosmo Myzrail Gorynych", | ||
"mail": "[email protected]" | ||
|
Oops, something went wrong.