|
108 | 108 | </constant> |
109 | 109 | <output name="out" type="vector4" nodename="sqrt1" /> |
110 | 110 | </nodegraph> |
111 | | - <nodegraph name="ceil_float_nodegraph"> |
112 | | - <ceil name="ceil1" type="float"> |
| 111 | + <nodegraph name="floor_float_nodegraph"> |
| 112 | + <floor name="floor1" type="float"> |
113 | 113 | <input name="in" type="float" nodename="constant1" /> |
114 | | - </ceil> |
| 114 | + </floor> |
115 | 115 | <constant name="constant1" type="float"> |
116 | 116 | <input name="value" type="float" value="0.5000" /> |
117 | 117 | </constant> |
118 | | - <output name="out" type="float" nodename="ceil1" /> |
| 118 | + <output name="out" type="float" nodename="floor1" /> |
119 | 119 | </nodegraph> |
120 | | - <nodegraph name="floor_float_nodegraph"> |
121 | | - <floor name="floor1" type="float"> |
| 120 | + <nodegraph name="floor_vector2_nodegraph"> |
| 121 | + <floor name="floor1" type="vector2"> |
| 122 | + <input name="in" type="vector2" nodename="constant1" /> |
| 123 | + </floor> |
| 124 | + <constant name="constant1" type="vector2"> |
| 125 | + <input name="value" type="vector2" value="0.5000, 1.5000" /> |
| 126 | + </constant> |
| 127 | + <output name="out" type="vector2" nodename="floor1" /> |
| 128 | + </nodegraph> |
| 129 | + <nodegraph name="floor_vector3_nodegraph"> |
| 130 | + <floor name="floor1" type="vector3"> |
| 131 | + <input name="in" type="vector3" nodename="constant1" /> |
| 132 | + </floor> |
| 133 | + <constant name="constant1" type="vector3"> |
| 134 | + <input name="value" type="vector3" value="0.5000, 1.5000, 0.0" /> |
| 135 | + </constant> |
| 136 | + <output name="out" type="vector3" nodename="floor1" /> |
| 137 | + </nodegraph> |
| 138 | + <nodegraph name="floor_vector4_nodegraph"> |
| 139 | + <floor name="floor1" type="vector4"> |
| 140 | + <input name="in" type="vector4" nodename="constant1" /> |
| 141 | + </floor> |
| 142 | + <constant name="constant1" type="vector4"> |
| 143 | + <input name="value" type="vector4" value="0.5000, 1.5000, 0.0, 1.0" /> |
| 144 | + </constant> |
| 145 | + <output name="out" type="vector4" nodename="floor1" /> |
| 146 | + </nodegraph> |
| 147 | + <nodegraph name="floor_color3_nodegraph"> |
| 148 | + <constant name="constant1" type="color3"> |
| 149 | + <input name="value" type="color3" value="0.5000, 1.5000, 0.0" /> |
| 150 | + </constant> |
| 151 | + <floor name="floor1" type="color3"> |
| 152 | + <input name="in" type="color3" nodename="constant1" /> |
| 153 | + </floor> |
| 154 | + <output name="out" type="color3" nodename="floor1" /> |
| 155 | + </nodegraph> |
| 156 | + <nodegraph name="floor_color4_nodegraph"> |
| 157 | + <constant name="constant1" type="color4"> |
| 158 | + <input name="value" type="color4" value="0.5000, 1.5000, 0.0, 1.0" /> |
| 159 | + </constant> |
| 160 | + <floor name="floor1" type="color4"> |
| 161 | + <input name="in" type="color4" nodename="constant1" /> |
| 162 | + </floor> |
| 163 | + <output name="out" type="color4" nodename="floor1" /> |
| 164 | + </nodegraph> |
| 165 | + <nodegraph name="floor_integer_nodegraph"> |
| 166 | + <floor name="floor1" type="integer"> |
122 | 167 | <input name="in" type="float" nodename="constant1" /> |
123 | 168 | </floor> |
124 | 169 | <constant name="constant1" type="float"> |
125 | 170 | <input name="value" type="float" value="0.5000" /> |
126 | 171 | </constant> |
127 | | - <output name="out" type="float" nodename="floor1" /> |
| 172 | + <output name="out" type="integer" nodename="floor1" /> |
| 173 | + </nodegraph> |
| 174 | + <nodegraph name="ceil_float_nodegraph"> |
| 175 | + <ceil name="ceil1" type="float"> |
| 176 | + <input name="in" type="float" nodename="constant1" /> |
| 177 | + </ceil> |
| 178 | + <constant name="constant1" type="float"> |
| 179 | + <input name="value" type="float" value="0.5000" /> |
| 180 | + </constant> |
| 181 | + <output name="out" type="float" nodename="ceil1" /> |
128 | 182 | </nodegraph> |
129 | 183 | <nodegraph name="ceil_vector2_nodegraph"> |
130 | 184 | <ceil name="ceil1" type="vector2"> |
|
171 | 225 | </ceil> |
172 | 226 | <output name="out" type="color4" nodename="ceil1" /> |
173 | 227 | </nodegraph> |
174 | | - <nodegraph name="floor_vector2_nodegraph"> |
175 | | - <floor name="floor1" type="vector2"> |
176 | | - <input name="in" type="vector2" nodename="constant1" /> |
177 | | - </floor> |
178 | | - <constant name="constant1" type="vector2"> |
179 | | - <input name="value" type="vector2" value="0.5000, 1.5000" /> |
180 | | - </constant> |
181 | | - <output name="out" type="vector2" nodename="floor1" /> |
182 | | - </nodegraph> |
183 | | - <nodegraph name="floor_vector3_nodegraph"> |
184 | | - <floor name="floor1" type="vector3"> |
185 | | - <input name="in" type="vector3" nodename="constant1" /> |
186 | | - </floor> |
187 | | - <constant name="constant1" type="vector3"> |
188 | | - <input name="value" type="vector3" value="0.5000, 1.5000, 0.0" /> |
189 | | - </constant> |
190 | | - <output name="out" type="vector3" nodename="floor1" /> |
191 | | - </nodegraph> |
192 | | - <nodegraph name="floor_vector4_nodegraph"> |
193 | | - <floor name="floor1" type="vector4"> |
194 | | - <input name="in" type="vector4" nodename="constant1" /> |
195 | | - </floor> |
196 | | - <constant name="constant1" type="vector4"> |
197 | | - <input name="value" type="vector4" value="0.5000, 1.5000, 0.0, 1.0" /> |
198 | | - </constant> |
199 | | - <output name="out" type="vector4" nodename="floor1" /> |
200 | | - </nodegraph> |
201 | | - <nodegraph name="floor_color3_nodegraph"> |
202 | | - <constant name="constant1" type="color3"> |
203 | | - <input name="value" type="color3" value="0.5000, 1.5000, 0.0" /> |
204 | | - </constant> |
205 | | - <floor name="floor1" type="color3"> |
206 | | - <input name="in" type="color3" nodename="constant1" /> |
207 | | - </floor> |
208 | | - <output name="out" type="color3" nodename="floor1" /> |
209 | | - </nodegraph> |
210 | | - <nodegraph name="floor_color4_nodegraph"> |
211 | | - <constant name="constant1" type="color4"> |
212 | | - <input name="value" type="color4" value="0.5000, 1.5000, 0.0, 1.0" /> |
| 228 | + <nodegraph name="ceil_integer_nodegraph"> |
| 229 | + <ceil name="ceil1" type="integer"> |
| 230 | + <input name="in" type="float" nodename="constant1" /> |
| 231 | + </ceil> |
| 232 | + <constant name="constant1" type="float"> |
| 233 | + <input name="value" type="float" value="0.5000" /> |
213 | 234 | </constant> |
214 | | - <floor name="floor1" type="color4"> |
215 | | - <input name="in" type="color4" nodename="constant1" /> |
216 | | - </floor> |
217 | | - <output name="out" type="color4" nodename="floor1" /> |
| 235 | + <output name="out" type="integer" nodename="ceil1" /> |
218 | 236 | </nodegraph> |
219 | 237 | <nodegraph name="sign_float"> |
220 | 238 | <constant name="constant1" type="float"> |
|
0 commit comments