blockbench-types 5.1.0-beta.3-next.2 → 5.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -30
- package/custom/animation.d.ts +256 -256
- package/custom/animation_controller.d.ts +124 -124
- package/custom/blockbench.d.ts +73 -73
- package/custom/canvas.d.ts +307 -307
- package/custom/codec.d.ts +182 -182
- package/custom/copy_paste.d.ts +42 -42
- package/custom/cube.d.ts +151 -151
- package/custom/desktop.d.ts +73 -73
- package/custom/display_mode.d.ts +137 -137
- package/custom/edit_session.d.ts +37 -37
- package/custom/global.d.ts +168 -168
- package/custom/group.d.ts +113 -113
- package/custom/interface.d.ts +78 -78
- package/custom/io.d.ts +12 -12
- package/custom/keyframe.d.ts +94 -94
- package/custom/libs.d.ts +13 -13
- package/custom/menu.d.ts +136 -136
- package/custom/mesh.d.ts +196 -196
- package/custom/misc.d.ts +199 -199
- package/custom/molang.d.ts +159 -159
- package/custom/outliner.d.ts +158 -158
- package/custom/painter.d.ts +69 -69
- package/custom/preview.d.ts +137 -137
- package/custom/preview_scene.d.ts +120 -120
- package/custom/screencam.d.ts +71 -71
- package/custom/spline_mesh.d.ts +189 -189
- package/custom/start_screen.d.ts +14 -14
- package/custom/texture_group.d.ts +68 -68
- package/custom/texture_layers.d.ts +117 -117
- package/custom/textures.d.ts +515 -515
- package/custom/timeline.d.ts +66 -66
- package/custom/toolbars.d.ts +221 -221
- package/custom/undo.d.ts +208 -208
- package/custom/util/version_util.d.ts +32 -32
- package/custom/util.d.ts +235 -235
- package/custom/uveditor.d.ts +3 -3
- package/custom/validator.d.ts +99 -99
- package/documentation.md +12 -12
- package/generated/global_types.d.ts +47 -0
- package/generated/io/formats/bedrock.d.ts +4 -0
- package/generated/io/formats/bedrock_old.d.ts +4 -0
- package/generated/io/formats/collada.d.ts +4 -0
- package/generated/io/formats/fbx.d.ts +17 -0
- package/generated/io/formats/gltf.d.ts +6 -0
- package/generated/io/formats/java_block.d.ts +4 -0
- package/generated/io/formats/modded_entity.d.ts +139 -0
- package/generated/io/formats/obj.d.ts +12 -0
- package/generated/io/formats/optifine_jem.d.ts +3 -0
- package/generated/io/formats/optifine_jpm.d.ts +3 -0
- package/generated/io/formats/skin.d.ts +22 -0
- package/index.d.ts +2 -2
- package/package.json +39 -39
- package/tsconfig.json +19 -19
- package/type_config.json +46 -46
package/documentation.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
Welcome to the reference documentation for Blockbench!
|
|
3
|
-
|
|
4
|
-
This documentation is automatically generated from the comments and typescript types of the latest Blockbench release.
|
|
5
|
-
|
|
6
|
-
The documentation is mainly intended for plugin creators. You can find guides on how to get started with plugin development on the Blockbench wiki: [Creating a Plugin - Blockbench Wiki](https://www.blockbench.net/wiki/docs/plugin)
|
|
7
|
-
|
|
8
|
-
### Navigation
|
|
9
|
-
|
|
10
|
-
The documentation in the sidebar is divided into two categories: `custom` and `generated`. This separation is mostly irrelevant when reading types, it just stems from the fact that some code is written directly in Typescript, while other code is still written in Javascript with custom types. In some cases, there may be duplicated references between the two, in that case you can usually reference the one in `custom`.
|
|
11
|
-
|
|
12
|
-
You should be able to find any class and variable via the search function.
|
|
1
|
+
|
|
2
|
+
Welcome to the reference documentation for Blockbench!
|
|
3
|
+
|
|
4
|
+
This documentation is automatically generated from the comments and typescript types of the latest Blockbench release.
|
|
5
|
+
|
|
6
|
+
The documentation is mainly intended for plugin creators. You can find guides on how to get started with plugin development on the Blockbench wiki: [Creating a Plugin - Blockbench Wiki](https://www.blockbench.net/wiki/docs/plugin)
|
|
7
|
+
|
|
8
|
+
### Navigation
|
|
9
|
+
|
|
10
|
+
The documentation in the sidebar is divided into two categories: `custom` and `generated`. This separation is mostly irrelevant when reading types, it just stems from the fact that some code is written directly in Typescript, while other code is still written in Javascript with custom types. In some cases, there may be duplicated references between the two, in that case you can usually reference the one in `custom`.
|
|
11
|
+
|
|
12
|
+
You should be able to find any class and variable via the search function.
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { ModelFormat as _ModelFormat } from "./io/format";
|
|
2
|
+
declare global {
|
|
3
|
+
const ModelFormat: typeof _ModelFormat;
|
|
4
|
+
const Format: _ModelFormat;
|
|
5
|
+
const Formats: Record<string, _ModelFormat>;
|
|
6
|
+
namespace Blockbench {
|
|
7
|
+
const ModelFormat: typeof _ModelFormat;
|
|
8
|
+
const Format: _ModelFormat;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
import { settings as _settings, Setting as _Setting, SettingsProfile as _SettingsProfile, Settings as _Settings } from './interface/settings';
|
|
12
|
+
declare global {
|
|
13
|
+
const settings: typeof _settings;
|
|
14
|
+
const Setting: typeof _Setting;
|
|
15
|
+
const SettingsProfile: typeof _SettingsProfile;
|
|
16
|
+
const Settings: typeof _Settings;
|
|
17
|
+
namespace Blockbench {
|
|
18
|
+
const settings: typeof _settings;
|
|
19
|
+
const Setting: typeof _Setting;
|
|
20
|
+
const SettingsProfile: typeof _SettingsProfile;
|
|
21
|
+
const Settings: typeof _Settings;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
import { Modes as _Modes, Mode as _Mode } from './modes';
|
|
25
|
+
declare global {
|
|
26
|
+
const Modes: typeof _Modes;
|
|
27
|
+
const Mode: typeof _Mode;
|
|
28
|
+
}
|
|
29
|
+
import { Dialog as _Dialog, ConfigDialog as _ConfigDialog, DialogSidebar as _DialogSidebar, MessageBox as _MessageBox, ShapelessDialog as _ShapelessDialog, ToolConfig as _ToolConfig } from './interface/dialog';
|
|
30
|
+
declare global {
|
|
31
|
+
const Dialog: typeof _Dialog;
|
|
32
|
+
const ConfigDialog: typeof _ConfigDialog;
|
|
33
|
+
const DialogSidebar: typeof _DialogSidebar;
|
|
34
|
+
const MessageBox: typeof _MessageBox;
|
|
35
|
+
const ShapelessDialog: typeof _ShapelessDialog;
|
|
36
|
+
const ToolConfig: typeof _ToolConfig;
|
|
37
|
+
}
|
|
38
|
+
import { Property as _Property } from './util/property';
|
|
39
|
+
declare global {
|
|
40
|
+
const Property: typeof _Property;
|
|
41
|
+
}
|
|
42
|
+
import { Language as _Language, tl as _tl } from './languages';
|
|
43
|
+
declare global {
|
|
44
|
+
const Language: typeof _Language;
|
|
45
|
+
const tl: typeof _tl;
|
|
46
|
+
}
|
|
47
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
type TNumType = 'I' | 'D' | 'F' | 'L' | 'C' | 'Y';
|
|
2
|
+
type TNumVal = {
|
|
3
|
+
type: TNumType;
|
|
4
|
+
value: number | BigInt;
|
|
5
|
+
isTNum: true;
|
|
6
|
+
toString: () => string;
|
|
7
|
+
};
|
|
8
|
+
type FBXNode = {
|
|
9
|
+
_key?: string;
|
|
10
|
+
_values: (string | number | TNumVal)[];
|
|
11
|
+
[key: string]: any;
|
|
12
|
+
};
|
|
13
|
+
declare global {
|
|
14
|
+
function compileBinaryFBXModel(top_level_object: any): Uint8Array<ArrayBufferLike>;
|
|
15
|
+
function compileASCIIFBXSection(object: FBXNode): string;
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare global {
|
|
2
|
+
function buildAnimationTracks(export_scale?: string | number | boolean, do_quaternions?: boolean): any[];
|
|
3
|
+
function buildSkinnedMeshFromGroup(root_group: any): import("three").SkinnedMesh<import("three").BufferGeometry, any>;
|
|
4
|
+
function buildSkinnedMesh(armature: any, scale: any): import("three").SkinnedMesh<any, any>;
|
|
5
|
+
}
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
declare global {
|
|
2
|
+
const Templates: {
|
|
3
|
+
'1.12': {
|
|
4
|
+
name: string;
|
|
5
|
+
remember: boolean;
|
|
6
|
+
integer_size: boolean;
|
|
7
|
+
file: string;
|
|
8
|
+
field: string;
|
|
9
|
+
bone: string;
|
|
10
|
+
renderer: string;
|
|
11
|
+
cube: string;
|
|
12
|
+
};
|
|
13
|
+
'1.14': {
|
|
14
|
+
name: string;
|
|
15
|
+
remember: boolean;
|
|
16
|
+
integer_size: boolean;
|
|
17
|
+
file: string;
|
|
18
|
+
field: string;
|
|
19
|
+
bone: string;
|
|
20
|
+
renderer: string;
|
|
21
|
+
cube: string;
|
|
22
|
+
};
|
|
23
|
+
'1.14_mojmaps': {
|
|
24
|
+
name: string;
|
|
25
|
+
remember: boolean;
|
|
26
|
+
integer_size: boolean;
|
|
27
|
+
file: string;
|
|
28
|
+
field: string;
|
|
29
|
+
bone: string;
|
|
30
|
+
renderer: string;
|
|
31
|
+
cube: string;
|
|
32
|
+
};
|
|
33
|
+
'1.15': {
|
|
34
|
+
name: string;
|
|
35
|
+
remember: boolean;
|
|
36
|
+
integer_size: boolean;
|
|
37
|
+
file: string;
|
|
38
|
+
field: string;
|
|
39
|
+
bone: string;
|
|
40
|
+
renderer: string;
|
|
41
|
+
cube: string;
|
|
42
|
+
};
|
|
43
|
+
'1.15_mojmaps': {
|
|
44
|
+
name: string;
|
|
45
|
+
remember: boolean;
|
|
46
|
+
integer_size: boolean;
|
|
47
|
+
file: string;
|
|
48
|
+
field: string;
|
|
49
|
+
bone: string;
|
|
50
|
+
renderer: string;
|
|
51
|
+
cube: string;
|
|
52
|
+
};
|
|
53
|
+
'1.17': {
|
|
54
|
+
name: string;
|
|
55
|
+
remember: boolean;
|
|
56
|
+
use_layer_definition: boolean;
|
|
57
|
+
integer_size: boolean;
|
|
58
|
+
file: string;
|
|
59
|
+
field: string;
|
|
60
|
+
model_part: string;
|
|
61
|
+
bone: string;
|
|
62
|
+
renderer: string;
|
|
63
|
+
cube: string;
|
|
64
|
+
animation_template: string;
|
|
65
|
+
};
|
|
66
|
+
'1.17_yarn': {
|
|
67
|
+
name: string;
|
|
68
|
+
remember: boolean;
|
|
69
|
+
integer_size: boolean;
|
|
70
|
+
file: string;
|
|
71
|
+
field: string;
|
|
72
|
+
model_part: string;
|
|
73
|
+
bone: string;
|
|
74
|
+
renderer: string;
|
|
75
|
+
cube: string;
|
|
76
|
+
animation_template: string;
|
|
77
|
+
};
|
|
78
|
+
get(key: any, version?: any): any;
|
|
79
|
+
keepLine(line: any): any;
|
|
80
|
+
getVariableRegex(name: any): RegExp;
|
|
81
|
+
};
|
|
82
|
+
namespace AnimationTemplates {
|
|
83
|
+
namespace mojang {
|
|
84
|
+
let name: string;
|
|
85
|
+
let file: string;
|
|
86
|
+
let animation: string;
|
|
87
|
+
let looping: string;
|
|
88
|
+
let channel: string;
|
|
89
|
+
let keyframe_rotation: string;
|
|
90
|
+
let keyframe_position: string;
|
|
91
|
+
let keyframe_scale: string;
|
|
92
|
+
namespace channel_types {
|
|
93
|
+
let rotation: string;
|
|
94
|
+
let position: string;
|
|
95
|
+
let scale: string;
|
|
96
|
+
}
|
|
97
|
+
namespace interpolations {
|
|
98
|
+
let linear: string;
|
|
99
|
+
let catmullrom: string;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
namespace fabric {
|
|
103
|
+
let name_1: string;
|
|
104
|
+
export { name_1 as name };
|
|
105
|
+
let file_1: string;
|
|
106
|
+
export { file_1 as file };
|
|
107
|
+
let animation_1: string;
|
|
108
|
+
export { animation_1 as animation };
|
|
109
|
+
let looping_1: string;
|
|
110
|
+
export { looping_1 as looping };
|
|
111
|
+
let channel_1: string;
|
|
112
|
+
export { channel_1 as channel };
|
|
113
|
+
let keyframe_rotation_1: string;
|
|
114
|
+
export { keyframe_rotation_1 as keyframe_rotation };
|
|
115
|
+
let keyframe_position_1: string;
|
|
116
|
+
export { keyframe_position_1 as keyframe_position };
|
|
117
|
+
let keyframe_scale_1: string;
|
|
118
|
+
export { keyframe_scale_1 as keyframe_scale };
|
|
119
|
+
export namespace channel_types_1 {
|
|
120
|
+
let rotation_1: string;
|
|
121
|
+
export { rotation_1 as rotation };
|
|
122
|
+
let position_1: string;
|
|
123
|
+
export { position_1 as position };
|
|
124
|
+
let scale_1: string;
|
|
125
|
+
export { scale_1 as scale };
|
|
126
|
+
}
|
|
127
|
+
export { channel_types_1 as channel_types };
|
|
128
|
+
export namespace interpolations_1 {
|
|
129
|
+
let linear_1: string;
|
|
130
|
+
export { linear_1 as linear };
|
|
131
|
+
let catmullrom_1: string;
|
|
132
|
+
export { catmullrom_1 as catmullrom };
|
|
133
|
+
}
|
|
134
|
+
export { interpolations_1 as interpolations };
|
|
135
|
+
}
|
|
136
|
+
function get(key: any, version?: any): any;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare global {
|
|
2
|
+
function getMtlFace(obj: any, index: any): string | false;
|
|
3
|
+
namespace cube_face_normals {
|
|
4
|
+
let north: number[];
|
|
5
|
+
let east: number[];
|
|
6
|
+
let south: number[];
|
|
7
|
+
let west: number[];
|
|
8
|
+
let up: number[];
|
|
9
|
+
let down: number[];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
type SkinPreset = {
|
|
2
|
+
display_name: string;
|
|
3
|
+
pose?: boolean;
|
|
4
|
+
model?: string;
|
|
5
|
+
model_java?: string;
|
|
6
|
+
model_bedrock?: string;
|
|
7
|
+
variants?: {
|
|
8
|
+
[key: string]: {
|
|
9
|
+
name: string;
|
|
10
|
+
model: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
declare global {
|
|
15
|
+
const skin_presets: Record<string, SkinPreset>;
|
|
16
|
+
const codec: Codec;
|
|
17
|
+
const format: import("../format").ModelFormat;
|
|
18
|
+
function generateTemplate(width: number, height: number, cubes: any, name: string, eyes: any, layer_template: any): Texture;
|
|
19
|
+
const model_options: Record<string, string>;
|
|
20
|
+
const skin_dialog: import("../../interface/dialog").Dialog;
|
|
21
|
+
}
|
|
22
|
+
export {};
|
package/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
/// <reference types="./custom/blockbench"/>
|
|
2
|
-
/// <reference types="./generated/main"/>
|
|
1
|
+
/// <reference types="./custom/blockbench"/>
|
|
2
|
+
/// <reference types="./generated/main"/>
|
package/package.json
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "blockbench-types",
|
|
3
|
-
"version": "5.1.0
|
|
4
|
-
"description": "Blockbench typescript types",
|
|
5
|
-
"main": "",
|
|
6
|
-
"types": "./index.d.ts",
|
|
7
|
-
"typeScriptVersion": "5.8",
|
|
8
|
-
"keywords": [
|
|
9
|
-
"blockbench"
|
|
10
|
-
],
|
|
11
|
-
"author": "JannisX11",
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/JannisX11/blockbench/issues"
|
|
14
|
-
},
|
|
15
|
-
"repository": {
|
|
16
|
-
"type": "git",
|
|
17
|
-
"url": "https://github.com/JannisX11/blockbench"
|
|
18
|
-
},
|
|
19
|
-
"homepage": "https://blockbench.net",
|
|
20
|
-
"dependencies": {
|
|
21
|
-
"@babel/types": "^7.20.7",
|
|
22
|
-
"@types/dompurify": "^3.0.5",
|
|
23
|
-
"@types/jquery": "^3.5.32",
|
|
24
|
-
"@types/prismjs": "^1.26.0",
|
|
25
|
-
"@types/three": "^0.129.2",
|
|
26
|
-
"@types/tinycolor2": "^1.4.6",
|
|
27
|
-
"dompurify": "^3.0.1",
|
|
28
|
-
"electron": "^40.8.0",
|
|
29
|
-
"prismjs": "^1.29.0",
|
|
30
|
-
"tinycolor2": "^1.6.0",
|
|
31
|
-
"typescript": "^5.8.3",
|
|
32
|
-
"vue": "2.7.14",
|
|
33
|
-
"wintersky": "^1.3.0"
|
|
34
|
-
},
|
|
35
|
-
"devDependencies": {
|
|
36
|
-
"@types/node": "^18.14.6",
|
|
37
|
-
"prettier": "^2.8.3"
|
|
38
|
-
}
|
|
39
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "blockbench-types",
|
|
3
|
+
"version": "5.1.0",
|
|
4
|
+
"description": "Blockbench typescript types",
|
|
5
|
+
"main": "",
|
|
6
|
+
"types": "./index.d.ts",
|
|
7
|
+
"typeScriptVersion": "5.8",
|
|
8
|
+
"keywords": [
|
|
9
|
+
"blockbench"
|
|
10
|
+
],
|
|
11
|
+
"author": "JannisX11",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/JannisX11/blockbench/issues"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/JannisX11/blockbench"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://blockbench.net",
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@babel/types": "^7.20.7",
|
|
22
|
+
"@types/dompurify": "^3.0.5",
|
|
23
|
+
"@types/jquery": "^3.5.32",
|
|
24
|
+
"@types/prismjs": "^1.26.0",
|
|
25
|
+
"@types/three": "^0.129.2",
|
|
26
|
+
"@types/tinycolor2": "^1.4.6",
|
|
27
|
+
"dompurify": "^3.0.1",
|
|
28
|
+
"electron": "^40.8.0",
|
|
29
|
+
"prismjs": "^1.29.0",
|
|
30
|
+
"tinycolor2": "^1.6.0",
|
|
31
|
+
"typescript": "^5.8.3",
|
|
32
|
+
"vue": "2.7.14",
|
|
33
|
+
"wintersky": "^1.3.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/node": "^18.14.6",
|
|
37
|
+
"prettier": "^2.8.3"
|
|
38
|
+
}
|
|
39
|
+
}
|
package/tsconfig.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
{
|
|
2
|
-
"include": [
|
|
3
|
-
"custom/**/*",
|
|
4
|
-
"generated/**/*",
|
|
5
|
-
],
|
|
6
|
-
"compilerOptions": {
|
|
7
|
-
"target": "ES2022",
|
|
8
|
-
"useDefineForClassFields": true,
|
|
9
|
-
"module": "ES2022",
|
|
10
|
-
"moduleResolution": "Node",
|
|
11
|
-
"jsx": "preserve",
|
|
12
|
-
"resolveJsonModule": true,
|
|
13
|
-
"isolatedModules": true,
|
|
14
|
-
"esModuleInterop": true,
|
|
15
|
-
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
|
16
|
-
"skipLibCheck": true,
|
|
17
|
-
"noEmit": true
|
|
18
|
-
}
|
|
19
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"include": [
|
|
3
|
+
"custom/**/*",
|
|
4
|
+
"generated/**/*",
|
|
5
|
+
],
|
|
6
|
+
"compilerOptions": {
|
|
7
|
+
"target": "ES2022",
|
|
8
|
+
"useDefineForClassFields": true,
|
|
9
|
+
"module": "ES2022",
|
|
10
|
+
"moduleResolution": "Node",
|
|
11
|
+
"jsx": "preserve",
|
|
12
|
+
"resolveJsonModule": true,
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"esModuleInterop": true,
|
|
15
|
+
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
|
16
|
+
"skipLibCheck": true,
|
|
17
|
+
"noEmit": true
|
|
18
|
+
}
|
|
19
|
+
}
|
package/type_config.json
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
{
|
|
2
|
-
"exclude": [
|
|
3
|
-
"interface/action_control",
|
|
4
|
-
"animations/animation_controllers",
|
|
5
|
-
"animations/animation",
|
|
6
|
-
"animations/keyframe",
|
|
7
|
-
"animations/molang",
|
|
8
|
-
"animations/timeline",
|
|
9
|
-
"interface/menu",
|
|
10
|
-
"interface/setup_settings",
|
|
11
|
-
"desktop",
|
|
12
|
-
"util/math_util",
|
|
13
|
-
"display_mode/display_references",
|
|
14
|
-
"display_mode/display_mode",
|
|
15
|
-
"interface/interface",
|
|
16
|
-
"outliner/cube",
|
|
17
|
-
"outliner/group",
|
|
18
|
-
"outliner/locator",
|
|
19
|
-
"outliner/mesh",
|
|
20
|
-
"outliner/null_object",
|
|
21
|
-
"outliner/outliner",
|
|
22
|
-
"outliner/texture_mesh",
|
|
23
|
-
"preview/preview_scenes",
|
|
24
|
-
"preview/preview",
|
|
25
|
-
"preview/canvas",
|
|
26
|
-
"io/codec",
|
|
27
|
-
"io/io",
|
|
28
|
-
"preview/screenshot",
|
|
29
|
-
"texturing/painter",
|
|
30
|
-
"texturing/texture_groups",
|
|
31
|
-
"texturing/textures",
|
|
32
|
-
"texturing/layers",
|
|
33
|
-
"undo",
|
|
34
|
-
"web",
|
|
35
|
-
"copy_paste",
|
|
36
|
-
"uv/uv",
|
|
37
|
-
"validator",
|
|
38
|
-
"native_apis_web",
|
|
39
|
-
"util/util",
|
|
40
|
-
"lib/fik",
|
|
41
|
-
"lib/gif",
|
|
42
|
-
"lib/fik",
|
|
43
|
-
"lib/lzutf8",
|
|
44
|
-
"lib/VuePrismEditor",
|
|
45
|
-
"lib/VuePrismEditor.min"
|
|
46
|
-
]
|
|
1
|
+
{
|
|
2
|
+
"exclude": [
|
|
3
|
+
"interface/action_control",
|
|
4
|
+
"animations/animation_controllers",
|
|
5
|
+
"animations/animation",
|
|
6
|
+
"animations/keyframe",
|
|
7
|
+
"animations/molang",
|
|
8
|
+
"animations/timeline",
|
|
9
|
+
"interface/menu",
|
|
10
|
+
"interface/setup_settings",
|
|
11
|
+
"desktop",
|
|
12
|
+
"util/math_util",
|
|
13
|
+
"display_mode/display_references",
|
|
14
|
+
"display_mode/display_mode",
|
|
15
|
+
"interface/interface",
|
|
16
|
+
"outliner/cube",
|
|
17
|
+
"outliner/group",
|
|
18
|
+
"outliner/locator",
|
|
19
|
+
"outliner/mesh",
|
|
20
|
+
"outliner/null_object",
|
|
21
|
+
"outliner/outliner",
|
|
22
|
+
"outliner/texture_mesh",
|
|
23
|
+
"preview/preview_scenes",
|
|
24
|
+
"preview/preview",
|
|
25
|
+
"preview/canvas",
|
|
26
|
+
"io/codec",
|
|
27
|
+
"io/io",
|
|
28
|
+
"preview/screenshot",
|
|
29
|
+
"texturing/painter",
|
|
30
|
+
"texturing/texture_groups",
|
|
31
|
+
"texturing/textures",
|
|
32
|
+
"texturing/layers",
|
|
33
|
+
"undo",
|
|
34
|
+
"web",
|
|
35
|
+
"copy_paste",
|
|
36
|
+
"uv/uv",
|
|
37
|
+
"validator",
|
|
38
|
+
"native_apis_web",
|
|
39
|
+
"util/util",
|
|
40
|
+
"lib/fik",
|
|
41
|
+
"lib/gif",
|
|
42
|
+
"lib/fik",
|
|
43
|
+
"lib/lzutf8",
|
|
44
|
+
"lib/VuePrismEditor",
|
|
45
|
+
"lib/VuePrismEditor.min"
|
|
46
|
+
]
|
|
47
47
|
}
|