-
Notifications
You must be signed in to change notification settings - Fork 66
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
Showing
12 changed files
with
112 additions
and
40 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,5 +1,5 @@ | ||
# ωEngine | ||
### A engine made from Ω-Lλγers built for modding | ||
#### <a href='https://veprogames.github.io/omega-layers'>Ω-Lλγers</a> by VeproGames | ||
#### Play this <a href='https://jwklong.github.io/omega-engine'>now</a> | ||
# ωEngine v0.2.0 | ||
### A engine made from Ω-Lλγers built for making mods | ||
#### <a href='https://veprogames.github.io/omega-layers'>Ω-Lλγers</a> (the original) by VeproGames | ||
#### Play the engine <a href='https://jwklong.github.io/omega-engine'>now</a> | ||
##### Feel free to fork this, either to make your own mods or make pull requests with new features |
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,8 @@ | ||
@font-face{ | ||
font-family: minecraft; | ||
src: url('../../fonts/minecraft.otf'); | ||
} | ||
|
||
:root{ | ||
--primary-font: minecraft | ||
} |
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
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,5 @@ | ||
Vue.component("debug-tab", { | ||
template: `<div class="guide-tab"> | ||
` + mod.debugClasses[0].getInfo() + ` | ||
</div>` | ||
}) |
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,34 @@ | ||
Vue.component("engine-tab", { | ||
template: `<div class="changelog-tab"> | ||
<guide-item> | ||
<template v-slot:title>v0.2.0</template> | ||
<template v-slot:text>Debug mode, game changelog (different to engine changelog), minecraft font, link to the community server (which you should join) and alot more! | ||
</template> | ||
</guide-item> | ||
<guide-item> | ||
<template v-slot:title>v0.1.3</template> | ||
<template v-slot:text>Parts of UI are redesigned, and new Secret Achievements! | ||
</template> | ||
</guide-item> | ||
<guide-item> | ||
<template v-slot:title>v0.1.2</template> | ||
<template v-slot:text>Adds Comfortaa font and a automator to automate buying automators! (unlocked when meta upgrade bought) | ||
</template> | ||
</guide-item> | ||
<guide-item> | ||
<template v-slot:title>v0.1.1</template> | ||
<template v-slot:text>Fixes a few bugs and adds save management, now you can have more then 1 save stored! | ||
</template> | ||
</guide-item> | ||
<guide-item> | ||
<template v-slot:title>v0.1.0</template> | ||
<template v-slot:text>First public build, with layer names, fonts, the changelog and so much more! | ||
</template> | ||
</guide-item> | ||
<guide-item> | ||
<template v-slot:title>v0.0.1-v0.0.3</template> | ||
<template v-slot:text>Private Builds | ||
</template> | ||
</guide-item> | ||
</div>` | ||
}) |
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,10 @@ | ||
mod.debugClasses.push(new DebugClass("test.js", "test", "0.0.0", [ | ||
[ | ||
"test button", | ||
'console.log("testing the untested - jwklong")' | ||
], | ||
[ | ||
"test button 2", | ||
'console.warn("too many test buttons")' | ||
] | ||
])) |
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,23 @@ | ||
class DebugClass { | ||
constructor(name,desc,ver,buttons) { | ||
this.name = name | ||
this.desc = desc | ||
this.version = ver | ||
this.buttons = buttons | ||
} | ||
getButtons() { | ||
if (this.buttons === false) return "" | ||
let text = "" | ||
for (let i in this.buttons) { | ||
text += `<button onclick='` + this.buttons[i][1] + `'>` + this.buttons[i][0] + `</button> ` | ||
} | ||
return text | ||
} | ||
getInfo() { | ||
return `<guide-item> | ||
<template v-slot:title>` + this.name + " " + this.version + `</template> | ||
<template v-slot:text>` + this.desc + `<br> ` + this.getButtons() + ` | ||
</template> | ||
</guide-item>` | ||
} | ||
} |
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