mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-26 22:49:01 +08:00
Updated c3 to r455 that introduces updateRender.
This commit is contained in:
parent
75f30e297d
commit
28555dbfd2
@ -71,11 +71,8 @@ class DrawingInstance extends globalThis.ISDKWorldInstanceBase {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// workaround to request a redraw: https://github.com/Scirra/Construct-feature-requests/issues/615
|
|
||||||
this.x++;
|
|
||||||
this.x--;
|
|
||||||
|
|
||||||
this.update(this.dt);
|
this.update(this.dt);
|
||||||
|
this.runtime.sdk.updateRender();
|
||||||
}
|
}
|
||||||
|
|
||||||
private async loadSkeleton () {
|
private async loadSkeleton () {
|
||||||
|
|||||||
95
spine-ts/spine-construct3/ts-defs/plugins/File system/IFileSystemObjectType.d.ts
vendored
Normal file
95
spine-ts/spine-construct3/ts-defs/plugins/File system/IFileSystemObjectType.d.ts
vendored
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
|
||||||
|
/** Represents the File System object.
|
||||||
|
* @see {@link https://www.construct.net/make-games/manuals/construct-3/scripting/scripting-reference/plugin-interfaces/file-system | IFileSystemObjectType documentation } */
|
||||||
|
|
||||||
|
interface FSAcceptType {
|
||||||
|
description: string,
|
||||||
|
accept: {
|
||||||
|
[key: string]: string[]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type FSStartInLocation = "default" | "desktop" | "documents" | "downloads" | "music" | "pictures" | "videos";
|
||||||
|
type FSFolderPickerMode = "read" | "readwrite";
|
||||||
|
type FSWriteFileMode = "overwrite" | "append";
|
||||||
|
type FSReadFileMode = "text" | "binary";
|
||||||
|
|
||||||
|
interface FSSaveFilePickerOpts {
|
||||||
|
pickerTag: string;
|
||||||
|
acceptTypes?: FSAcceptType[];
|
||||||
|
showAcceptAll?: boolean;
|
||||||
|
suggestedName?: string;
|
||||||
|
id?: string;
|
||||||
|
startIn?: FSStartInLocation;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface FSOpenFilePickerOpts {
|
||||||
|
pickerTag: string;
|
||||||
|
acceptTypes?: FSAcceptType[];
|
||||||
|
showAcceptAll?: boolean;
|
||||||
|
multiple?: boolean;
|
||||||
|
id?: string;
|
||||||
|
startIn?: FSStartInLocation
|
||||||
|
}
|
||||||
|
|
||||||
|
interface FSFolderPickerOpts {
|
||||||
|
pickerTag: string;
|
||||||
|
mode?: FSFolderPickerMode;
|
||||||
|
id?: string;
|
||||||
|
startIn?: FSStartInLocation
|
||||||
|
}
|
||||||
|
|
||||||
|
interface FSWriteFileOpts {
|
||||||
|
pickerTag: string;
|
||||||
|
folderPath?: string;
|
||||||
|
fileTag?: string;
|
||||||
|
data: string | ArrayBuffer;
|
||||||
|
mode?: FSWriteFileMode
|
||||||
|
}
|
||||||
|
|
||||||
|
interface FSReadFileOpts {
|
||||||
|
pickerTag: string;
|
||||||
|
folderPath?: string;
|
||||||
|
fileTag?: string;
|
||||||
|
mode: FSReadFileMode;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface FSListContentResult {
|
||||||
|
files: string[],
|
||||||
|
folders: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
interface FSDropEvent extends ConstructEvent {
|
||||||
|
files: File[]
|
||||||
|
}
|
||||||
|
|
||||||
|
interface FSObjectTypeEventMap<InstanceType = IInstance> extends ObjectClassEventMap<InstanceType> {
|
||||||
|
"drop": FSDropEvent
|
||||||
|
}
|
||||||
|
|
||||||
|
declare class IFileSystemObjectType<InstType extends IInstance = IInstance> extends IObjectType<InstType>
|
||||||
|
{
|
||||||
|
addEventListener<K extends keyof FSObjectTypeEventMap<InstType>>(type: K, listener: (ev: FSObjectTypeEventMap<InstType>[K]) => any): void;
|
||||||
|
removeEventListener<K extends keyof FSObjectTypeEventMap<InstType>>(type: K, listener: (ev: FSObjectTypeEventMap<InstType>[K]) => any): void;
|
||||||
|
|
||||||
|
readonly isSupported: boolean;
|
||||||
|
readonly desktopFeaturesSupported: boolean;
|
||||||
|
|
||||||
|
hasPickerTag(pickerTag: string): boolean;
|
||||||
|
|
||||||
|
showSaveFilePicker(opts: FSSaveFilePickerOpts): Promise<string[]>;
|
||||||
|
showOpenFilePicker(opts: FSOpenFilePickerOpts): Promise<string[]>;
|
||||||
|
showFolderPicker(opts: FSFolderPickerOpts): Promise<string[]>;
|
||||||
|
|
||||||
|
writeFile(opts: FSWriteFileOpts): Promise<void>;
|
||||||
|
readFile(opts: FSReadFileOpts): Promise<string | ArrayBuffer>;
|
||||||
|
|
||||||
|
createFolder(pickerTag: string, folderPath: string, fileTag?: string): Promise<void>;
|
||||||
|
copyFile(pickerTag: string, srcFolderPath: string, destFolderPath: string, fileTag?: string): Promise<void>;
|
||||||
|
moveFile(pickerTag: string, srcFolderPath: string, destFolderPath: string, fileTag?: string): Promise<void>;
|
||||||
|
delete(pickerTag: string, folderPath?: string, isRecursive?: boolean, fileTag?: string): Promise<void>;
|
||||||
|
listContent(pickerTag: string, folderPath?: string, isRecursive?: boolean, fileTag?: string): Promise<FSListContentResult>;
|
||||||
|
|
||||||
|
shellOpen(pickerTag: string, filePath?: string, fileTag?: string): Promise<void>;
|
||||||
|
runFile(pickerTag: string, filePath?: string, args?: string, fileTag?: string): Promise<void>;
|
||||||
|
}
|
||||||
@ -2,6 +2,8 @@
|
|||||||
/** Utility class for scripting APIs intended for the Addon SDK. */
|
/** Utility class for scripting APIs intended for the Addon SDK. */
|
||||||
declare class ISDKUtils
|
declare class ISDKUtils
|
||||||
{
|
{
|
||||||
|
updateRender(): void;
|
||||||
|
|
||||||
addLoadPromise(promise: Promise<void>): void;
|
addLoadPromise(promise: Promise<void>): void;
|
||||||
|
|
||||||
sendWrapperExtensionMessage(wrapperComponentId: string, messageId: string, params?: WrapperExtensionParameterType[]): void;
|
sendWrapperExtensionMessage(wrapperComponentId: string, messageId: string, params?: WrapperExtensionParameterType[]): void;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user