commit
9c987a59c5
|
@ -161,8 +161,8 @@ Reflect.defineProperty(HTMLDivElement.prototype, 'setBackground', {
|
|||
const sex = nameinfo ? nameinfo[0] : 'male';
|
||||
this.style.backgroundImage = [
|
||||
this.style.backgroundImage,
|
||||
`url("${lib.assetURL}image/character/default_silhouette_${sex}${ext}")`,
|
||||
`url("${lib.assetURL}image/character/default_silhouette_male${ext}")`,
|
||||
`url("${lib.assetURL}${lib.characterDefaultPicturePath}${sex}${ext}")`,
|
||||
`url("${lib.assetURL}${lib.characterDefaultPicturePath}male${ext}")`,
|
||||
].join(",");
|
||||
}
|
||||
return this;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
* @typedef { InstanceType<typeof lib.element.GameEvent> & InstanceType<typeof lib.element.GameEventPromise> & typeof Promise<typeof lib.element.GameEvent> } GameEventPromise
|
||||
* @typedef { InstanceType<typeof lib.element.NodeWS> } NodeWS
|
||||
*/
|
||||
import { nonameInitialized, assetURL, userAgent, Uninstantable, GeneratorFunction, AsyncFunction } from "../util/index.js";
|
||||
import { nonameInitialized, assetURL, userAgent, Uninstantable, GeneratorFunction, AsyncFunction, characterDefaultPicturePath } from "../util/index.js";
|
||||
import { AI as ai } from '../ai/index.js';
|
||||
import { Get as get } from '../get/index.js';
|
||||
import { Game as game } from '../game/index.js';
|
||||
|
@ -35,6 +35,7 @@ export class Library extends Uninstantable {
|
|||
static hallURL = '47.99.105.222';
|
||||
static assetURL = assetURL;
|
||||
static userAgent = userAgent;
|
||||
static characterDefaultPicturePath = characterDefaultPicturePath;
|
||||
static compatibleEdition = Boolean(typeof nonameInitialized == 'string' && nonameInitialized.match(/\/(?:com\.widget|yuri\.nakamura)\.noname\//));
|
||||
static changeLog = [];
|
||||
static updates = [];
|
||||
|
|
|
@ -3,6 +3,7 @@ export const assetURL = typeof nonameInitialized != 'string' || nonameInitialize
|
|||
export const GeneratorFunction = (function* () { }).constructor;
|
||||
export const AsyncFunction = (async function () { }).constructor;
|
||||
export const userAgent = navigator.userAgent.toLowerCase();
|
||||
export const characterDefaultPicturePath = "image/character/default_silhouette_";
|
||||
|
||||
// 我靠循环引用问题在这?
|
||||
// export * as config from './config.js'
|
||||
|
|
Loading…
Reference in New Issue