File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
1
/* Auto generated */
2
2
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" ;
3
10
export * from "./Variables" ;
Original file line number Diff line number Diff line change 1
1
import { DefinedUsing } from "../Types/Defined Using/DefinedUsing" ;
2
2
import { Using } from "../Types/Defined Using/include" ;
3
- import { Molang } from "./Molang" ;
3
+ import { Sets } from "./Molang/include " ;
4
4
5
5
/** */
6
6
export interface MolangSet {
@@ -47,8 +47,8 @@ export namespace MolangSet {
47
47
export function harvest ( object : any ) : MolangSet {
48
48
const out = create ( ) ;
49
49
50
- Molang . Sets . getUsing ( object , out ) ;
51
- Molang . Sets . getDefined ( object , out ) ;
50
+ Sets . getUsing ( object , out ) ;
51
+ Sets . getDefined ( object , out ) ;
52
52
53
53
return out ;
54
54
}
@@ -94,8 +94,8 @@ export namespace MolangFullSet {
94
94
export function harvest ( object : object | string ) : MolangFullSet {
95
95
const out = create ( ) ;
96
96
97
- Molang . Sets . getUsingFull ( object , out ) ;
98
- Molang . Sets . getDefined ( object , out ) ;
97
+ Sets . getUsingFull ( object , out ) ;
98
+ Sets . getDefined ( object , out ) ;
99
99
100
100
return out ;
101
101
}
You can’t perform that action at this time.
0 commit comments