-
Notifications
You must be signed in to change notification settings - Fork 3
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
ca60a14
commit 8b9270c
Showing
21 changed files
with
541 additions
and
396 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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
{ | ||
"files.exclude": { | ||
// "**/node_modules/**": true, | ||
"**/node_modules/[^b]**": true | ||
"**/node_modules/**": true | ||
} | ||
} |
12 changes: 0 additions & 12 deletions
12
addon/content/solid-example/panorama/layout/custom_game/app.xml
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
addon/content/solid-example/panorama/layout/custom_game/lowhud.xml
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,12 @@ | ||
<root> | ||
<styles> | ||
<include src="s2r://panorama/styles/dotastyles.vcss_c"/> | ||
<include src="file://{resources}/styles/custom_game/hud_main.css"/> | ||
</styles> | ||
<scripts> | ||
<include src="file://{resources}/scripts/custom_game/hud_main.js"/> | ||
</scripts> | ||
<Panel> | ||
<Panel id="app"/> | ||
</Panel> | ||
</root> |
12 changes: 12 additions & 0 deletions
12
addon/content/solid-example/panorama/layout/custom_game/shop.xml
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,12 @@ | ||
<root> | ||
<styles> | ||
<include src="s2r://panorama/styles/dotastyles.vcss_c"/> | ||
<include src="file://{resources}/styles/custom_game/shop.css"/> | ||
</styles> | ||
<scripts> | ||
<include src="file://{resources}/scripts/custom_game/shop.js"/> | ||
</scripts> | ||
<Panel> | ||
<Panel id="app"/> | ||
</Panel> | ||
</root> |
39 changes: 0 additions & 39 deletions
39
addon/content/solid-example/panorama/scripts/custom_game/app.js
This file was deleted.
Oops, something went wrong.
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
15 changes: 15 additions & 0 deletions
15
addon/content/solid-example/panorama/scripts/custom_game/lowhud.js
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 @@ | ||
'use strict'; const require = GameUI.__require; | ||
|
||
var libs = require('./libs.js'); | ||
|
||
function App() { | ||
return (() => { | ||
const _el$ = libs.createElement("Panel", {}, null); | ||
libs.createTextNode(`Hello World!`, _el$); | ||
libs.setProp(_el$, "style", { | ||
flowChildren: 'right' | ||
}); | ||
return _el$; | ||
})(); | ||
} | ||
libs.render(() => libs.createComponent(App, {}, null), $('#app')); |
15 changes: 15 additions & 0 deletions
15
addon/content/solid-example/panorama/scripts/custom_game/shop.js
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 @@ | ||
'use strict'; const require = GameUI.__require; | ||
|
||
var libs = require('./libs.js'); | ||
|
||
function App() { | ||
return (() => { | ||
const _el$ = libs.createElement("Panel", {}, null); | ||
libs.createTextNode(`Hello World!`, _el$); | ||
libs.setProp(_el$, "style", { | ||
flowChildren: 'right' | ||
}); | ||
return _el$; | ||
})(); | ||
} | ||
libs.render(() => libs.createComponent(App, {}, null), $('#app')); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.