diff options
Diffstat (limited to 'spec/inputs')
-rw-r--r-- | spec/inputs/import.yue | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/spec/inputs/import.yue b/spec/inputs/import.yue index 7a21995..b8ffc24 100644 --- a/spec/inputs/import.yue +++ b/spec/inputs/import.yue | |||
@@ -76,6 +76,42 @@ do | |||
76 | c | 76 | c |
77 | 77 | ||
78 | do | 78 | do |
79 | from UnityEngine import Object | ||
80 | GameObject | ||
81 | Transform | ||
82 | MonoBehaviour | ||
83 | Vector3 | ||
84 | Quaternion | ||
85 | |||
86 | speed = 10 | ||
87 | |||
88 | do | ||
89 | from UnityEngine import Object, GameObject, | ||
90 | Transform | ||
91 | MonoBehaviour | ||
92 | Vector3 | ||
93 | Quaternion | ||
94 | |||
95 | speed = 10 | ||
96 | |||
97 | do | ||
98 | from UnityEngine import Object, GameObject, | ||
99 | Transform, | ||
100 | MonoBehaviour | ||
101 | Vector3, Quaternion | ||
102 | |||
103 | update speed | ||
104 | |||
105 | do | ||
106 | from UnityEngine import | ||
107 | Object, GameObject, | ||
108 | Transform, | ||
109 | MonoBehaviour | ||
110 | Vector3, Quaternion | ||
111 | |||
112 | update speed | ||
113 | |||
114 | do | ||
79 | import 'module' | 115 | import 'module' |
80 | import 'module_x' | 116 | import 'module_x' |
81 | import "d-a-s-h-e-s" | 117 | import "d-a-s-h-e-s" |