mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
First release of new project.
This commit is contained in:
parent
f169f72002
commit
95b03c77fa
@ -1 +0,0 @@
|
||||
BROWSER=none
|
7
LICENSE
7
LICENSE
@ -1,7 +0,0 @@
|
||||
Copyright (c) 2016 Daan Vanden Bosch
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
23
README.md
23
README.md
@ -1,23 +0,0 @@
|
||||
# Phantasmal World
|
||||
|
||||
Phantasmal World is a suite of tools for Phantasy Star Online. This project is in a very early stage of development.
|
||||
|
||||
## For Developers
|
||||
|
||||
React is used for the frontend, MobX is used for state management and THREE.js for 3D graphics.
|
||||
|
||||
### Getting Started
|
||||
|
||||
1. Install Yarn ([https://yarnpkg.com/](https://yarnpkg.com/))
|
||||
2. cd to the project directory
|
||||
3. Launch server on [http://localhost:3000/](http://localhost:3000/) with `yarn start`
|
||||
4. src/index.tsx is the application's entry point
|
||||
|
||||
### Tests
|
||||
|
||||
Run tests with `yarn test`.
|
||||
|
||||
### Production Build
|
||||
|
||||
1. Change the homepage field in package.json if you don't want to deploy to /
|
||||
3. Build with `yarn build`
|
@ -1,52 +0,0 @@
|
||||
@primary-color: hsl(200, 100%, 50%);
|
||||
|
||||
@white: #000;
|
||||
@black: #fff;
|
||||
|
||||
@primary-1: fade(@primary-color, 50%);
|
||||
@primary-2: fade(@primary-color, 40%);
|
||||
|
||||
@body-background: hsl(200, 10%, 20%);
|
||||
@component-background: @body-background;
|
||||
@text-color: hsl(200, 10%, 90%);
|
||||
@text-color-secondary: hsl(200, 20%, 80%);
|
||||
@text-color-dark: fade(white, 85%);
|
||||
@text-color-secondary-dark: fade(white, 65%);
|
||||
|
||||
@heading-color: fade(@black, 85%);
|
||||
|
||||
@border-radius-base: 2px;
|
||||
@border-radius-sm: 0px;
|
||||
|
||||
@background-color-light: lighten(@component-background, 20%); // background of header and selected item
|
||||
@background-color-base: fade(@primary-color, 20%); // Default grey background color
|
||||
|
||||
@item-active-bg: fade(@primary-color, 20%);
|
||||
@item-hover-bg: fade(@primary-color, 10%);
|
||||
|
||||
@border-color-base: lighten(@component-background, 20%); // base border outline a component
|
||||
@border-color-split: lighten(@component-background, 10%); // split border inside a component
|
||||
|
||||
// Disabled states
|
||||
@disabled-color: fade(#fff, 50%);
|
||||
|
||||
// Animation
|
||||
@animation-duration-slow: 0.1s; // Modal
|
||||
@animation-duration-base: 0.066s;
|
||||
@animation-duration-fast: 0.033s; // Tooltip
|
||||
|
||||
// Input
|
||||
@input-bg: darken(@component-background, 5%);
|
||||
|
||||
// Buttons
|
||||
@btn-default-bg: lighten(@component-background, 10%);
|
||||
|
||||
// Modal
|
||||
@modal-mask-bg: fade(black, 80%);
|
||||
|
||||
// Table
|
||||
@table-selected-row-bg: @item-active-bg;
|
||||
@table-row-hover-bg: @item-hover-bg;
|
||||
|
||||
// Menu
|
||||
@menu-dark-bg: @component-background;
|
17
asset-manifest.json
Normal file
17
asset-manifest.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"files": {
|
||||
"main.css": "/static/css/main.fb4f588b.chunk.css",
|
||||
"main.js": "/static/js/main.08895bb3.chunk.js",
|
||||
"main.js.map": "/static/js/main.08895bb3.chunk.js.map",
|
||||
"runtime~main.js": "/static/js/runtime~main.a8a9905a.js",
|
||||
"runtime~main.js.map": "/static/js/runtime~main.a8a9905a.js.map",
|
||||
"static/css/2.5fcf4e3c.chunk.css": "/static/css/2.5fcf4e3c.chunk.css",
|
||||
"static/js/2.e8014737.chunk.js": "/static/js/2.e8014737.chunk.js",
|
||||
"static/js/2.e8014737.chunk.js.map": "/static/js/2.e8014737.chunk.js.map",
|
||||
"index.html": "/index.html",
|
||||
"precache-manifest.be7f938c356ac9dff1a6bfa51f6f976d.js": "/precache-manifest.be7f938c356ac9dff1a6bfa51f6f976d.js",
|
||||
"service-worker.js": "/service-worker.js",
|
||||
"static/css/2.5fcf4e3c.chunk.css.map": "/static/css/2.5fcf4e3c.chunk.css.map",
|
||||
"static/css/main.fb4f588b.chunk.css.map": "/static/css/main.fb4f588b.chunk.css.map"
|
||||
}
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
const CracoAntDesignPlugin = require("craco-antd");
|
||||
|
||||
module.exports = {
|
||||
plugins: [{ plugin: CracoAntDesignPlugin }]
|
||||
};
|
1
index.html
Normal file
1
index.html
Normal file
@ -0,0 +1 @@
|
||||
<!doctype html><html><head><meta charset="utf-8"><link href="/static/css/2.5fcf4e3c.chunk.css" rel="stylesheet"><link href="/static/css/main.fb4f588b.chunk.css" rel="stylesheet"></head><body><div id="phantasmal-world-root"></div><script>!function(l){function e(e){for(var r,t,n=e[0],o=e[1],u=e[2],f=0,i=[];f<n.length;f++)t=n[f],p[t]&&i.push(p[t][0]),p[t]=0;for(r in o)Object.prototype.hasOwnProperty.call(o,r)&&(l[r]=o[r]);for(s&&s(e);i.length;)i.shift()();return c.push.apply(c,u||[]),a()}function a(){for(var e,r=0;r<c.length;r++){for(var t=c[r],n=!0,o=1;o<t.length;o++){var u=t[o];0!==p[u]&&(n=!1)}n&&(c.splice(r--,1),e=f(f.s=t[0]))}return e}var t={},p={1:0},c=[];function f(e){if(t[e])return t[e].exports;var r=t[e]={i:e,l:!1,exports:{}};return l[e].call(r.exports,r,r.exports,f),r.l=!0,r.exports}f.m=l,f.c=t,f.d=function(e,r,t){f.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},f.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},f.t=function(r,e){if(1&e&&(r=f(r)),8&e)return r;if(4&e&&"object"==typeof r&&r&&r.__esModule)return r;var t=Object.create(null);if(f.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:r}),2&e&&"string"!=typeof r)for(var n in r)f.d(t,n,function(e){return r[e]}.bind(null,n));return t},f.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return f.d(r,"a",r),r},f.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},f.p="/";var r=window.webpackJsonp=window.webpackJsonp||[],n=r.push.bind(r);r.push=e,r=r.slice();for(var o=0;o<r.length;o++)e(r[o]);var s=n;a()}([])</script><script src="/static/js/2.e8014737.chunk.js"></script><script src="/static/js/main.08895bb3.chunk.js"></script></body></html>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user