Skip to content

Commit 6b087e4

Browse files
committed
Updated
1 parent b5a8397 commit 6b087e4

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

src/molang/Molang/include.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
/* Auto generated */
22

3+
export * from "./Context";
4+
export * from "./Geometries";
5+
export * from "./Materials";
6+
export * from "./Queries";
7+
export * from "./Sets";
8+
export * from "./Temps";
9+
export * from "./Textures";
310
export * from "./Variables";

src/molang/MolangSet.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { DefinedUsing } from "../Types/Defined Using/DefinedUsing";
22
import { Using } from "../Types/Defined Using/include";
3-
import { Molang } from "./Molang";
3+
import { Sets } from "./Molang/include";
44

55
/** */
66
export interface MolangSet {
@@ -47,8 +47,8 @@ export namespace MolangSet {
4747
export function harvest(object: any): MolangSet {
4848
const out = create();
4949

50-
Molang.Sets.getUsing(object, out);
51-
Molang.Sets.getDefined(object, out);
50+
Sets.getUsing(object, out);
51+
Sets.getDefined(object, out);
5252

5353
return out;
5454
}
@@ -94,8 +94,8 @@ export namespace MolangFullSet {
9494
export function harvest(object: object | string): MolangFullSet {
9595
const out = create();
9696

97-
Molang.Sets.getUsingFull(object, out);
98-
Molang.Sets.getDefined(object, out);
97+
Sets.getUsingFull(object, out);
98+
Sets.getDefined(object, out);
9999

100100
return out;
101101
}

0 commit comments

Comments
 (0)