File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change
1
+ import { Data } from "./Data" ;
2
+
3
+ /**Molang data for animations controllers*/
4
+ export namespace Attachables {
5
+ /**The list of usable variables for this specific type*/
6
+ export const Variables : Data [ ] = [ ] ;
7
+ /**The list of specific contexts usable for this specific type*/
8
+ export const Contexts : Data [ ] = [ { id : "is_first_person" } , { id : "item_slot" } ] ;
9
+ /**The list of usable temp variables for this specific type*/
10
+ export const Temps : Data [ ] = [ ] ;
11
+ }
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { Data } from "./Data";
2
2
3
3
import { Animations as MAnimations } from "./Animations" ;
4
4
import { AnimationsControllers as MAnimationsControllers } from "./AnimationsControllers" ;
5
+ import { Attachables as MAttachables } from "./Attachables" ;
5
6
import { Blocks as MBlocks } from "./Blocks" ;
6
7
import { Entities as MEntities } from "./Entities" ;
7
8
import { FeaturesRules as MFeaturesRules } from "./FeaturesRules" ;
@@ -28,6 +29,8 @@ export namespace MolangData {
28
29
export const Animations = MAnimations ;
29
30
/**Molang data for animations controllers*/
30
31
export const AnimationsControllers = MAnimationsControllers ;
32
+ /**Molang data for attachables*/
33
+ export const Attachables = MAttachables ;
31
34
/**Molang data for blocks*/
32
35
export const Blocks = MBlocks ;
33
36
/**Molang data for entities*/
@@ -55,6 +58,7 @@ export namespace MolangData {
55
58
export type MolangDataSetKey =
56
59
| "Animations"
57
60
| "AnimationsControllers"
61
+ | "Attachables"
58
62
| "Blocks"
59
63
| "Entities"
60
64
| "FeaturesRules"
You can’t perform that action at this time.
0 commit comments