├── icon.png ├── unit_hex.glb ├── marketing └── cover.png ├── custom1(Clone).material ├── red.tres ├── blue.tres ├── yellow.tres ├── green.tres ├── .gitignore ├── HexTile.tscn ├── Main.tscn ├── default_env.tres ├── project.godot ├── icon.png.import ├── HexGrid.gd ├── README.md └── unit_hex.glb.import /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmbustamante/Godot-3D-Hex-Grid-Tutorial/HEAD/icon.png -------------------------------------------------------------------------------- /unit_hex.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmbustamante/Godot-3D-Hex-Grid-Tutorial/HEAD/unit_hex.glb -------------------------------------------------------------------------------- /marketing/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmbustamante/Godot-3D-Hex-Grid-Tutorial/HEAD/marketing/cover.png -------------------------------------------------------------------------------- /custom1(Clone).material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephmbustamante/Godot-3D-Hex-Grid-Tutorial/HEAD/custom1(Clone).material -------------------------------------------------------------------------------- /red.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="SpatialMaterial" format=2] 2 | 3 | [resource] 4 | albedo_color = Color( 1, 0.439216, 0.439216, 1 ) 5 | -------------------------------------------------------------------------------- /blue.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="SpatialMaterial" format=2] 2 | 3 | [resource] 4 | albedo_color = Color( 0.411765, 0.54902, 0.952941, 1 ) 5 | -------------------------------------------------------------------------------- /yellow.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="SpatialMaterial" format=2] 2 | 3 | [resource] 4 | albedo_color = Color( 1, 0.980392, 0.490196, 1 ) 5 | -------------------------------------------------------------------------------- /green.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="SpatialMaterial" format=2] 2 | 3 | [resource] 4 | albedo_color = Color( 0.486275, 0.94902, 0.392157, 1 ) 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Godot-specific ignores 3 | .import/ 4 | export.cfg 5 | export_presets.cfg 6 | 7 | # Mono-specific ignores 8 | .mono/ 9 | 10 | Export/ 11 | -------------------------------------------------------------------------------- /HexTile.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=2 format=2] 2 | 3 | [ext_resource path="res://unit_hex.glb" type="PackedScene" id=1] 4 | 5 | [node name="HexTile" type="Spatial"] 6 | 7 | [node name="unit_hex" parent="." instance=ExtResource( 1 )] 8 | -------------------------------------------------------------------------------- /Main.tscn: -------------------------------------------------------------------------------- 1 | [gd_scene load_steps=2 format=2] 2 | 3 | [ext_resource path="res://HexGrid.gd" type="Script" id=1] 4 | 5 | [node name="Main" type="Spatial"] 6 | 7 | [node name="HexGrid" type="Spatial" parent="."] 8 | script = ExtResource( 1 ) 9 | 10 | [node name="Camera" type="Camera" parent="."] 11 | transform = Transform( 1, 0, 0, 0, 0.866025, 0.5, 0, -0.5, 0.866025, 4.1, 3, 12 ) 12 | -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="Environment" load_steps=2 format=2] 2 | 3 | [sub_resource type="ProceduralSky" id=1] 4 | sky_horizon_color = Color( 0.894118, 0.894118, 0.823529, 1 ) 5 | ground_bottom_color = Color( 0.560784, 0.588235, 0.611765, 1 ) 6 | ground_horizon_color = Color( 0.807843, 0.815686, 0.72549, 1 ) 7 | 8 | [resource] 9 | background_mode = 2 10 | background_sky = SubResource( 1 ) 11 | -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- 1 | ; Engine configuration file. 2 | ; It's best edited using the editor UI and not directly, 3 | ; since the parameters that go here are not all obvious. 4 | ; 5 | ; Format: 6 | ; [section] ; section goes between [] 7 | ; param=value ; assign values to parameters 8 | 9 | config_version=4 10 | 11 | [application] 12 | 13 | config/name="Godot 3D Hex Grid Tutorial" 14 | run/main_scene="res://Main.tscn" 15 | config/icon="res://icon.png" 16 | 17 | [physics] 18 | 19 | common/enable_pause_aware_picking=true 20 | 21 | [rendering] 22 | 23 | environment/default_environment="res://default_env.tres" 24 | -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="texture" 4 | type="StreamTexture" 5 | path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" 6 | metadata={ 7 | "vram_texture": false 8 | } 9 | 10 | [deps] 11 | 12 | source_file="res://icon.png" 13 | dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] 14 | 15 | [params] 16 | 17 | compress/mode=0 18 | compress/lossy_quality=0.7 19 | compress/hdr_mode=0 20 | compress/bptc_ldr=0 21 | compress/normal_map=0 22 | flags/repeat=0 23 | flags/filter=true 24 | flags/mipmaps=false 25 | flags/anisotropic=false 26 | flags/srgb=2 27 | process/fix_alpha_border=true 28 | process/premult_alpha=false 29 | process/HDR_as_SRGB=false 30 | process/invert_color=false 31 | stream=false 32 | size_limit=0 33 | detect_3d=true 34 | svg/scale=1.0 35 | -------------------------------------------------------------------------------- /HexGrid.gd: -------------------------------------------------------------------------------- 1 | extends Spatial 2 | 3 | 4 | const TILE_MATERIALS = [ 5 | preload("res://blue.tres"), 6 | preload("res://green.tres"), 7 | preload("res://red.tres"), 8 | preload("res://yellow.tres"), 9 | ] 10 | 11 | const TILE_SIZE := 1.0 12 | const HEX_TILE = preload("res://HexTile.tscn") 13 | 14 | export (int, 2, 20) var grid_size := 10 15 | 16 | 17 | func _ready() -> void: 18 | _generate_grid() 19 | 20 | 21 | func _generate_grid(): 22 | var tile_index := 0 23 | for x in range(grid_size): 24 | var tile_coordinates := Vector2.ZERO 25 | tile_coordinates.x = x * TILE_SIZE * cos(deg2rad(30)) 26 | tile_coordinates.y = 0 if x % 2 == 0 else TILE_SIZE / 2 27 | for y in range(grid_size): 28 | var tile = HEX_TILE.instance() 29 | add_child(tile) 30 | tile.translate(Vector3(tile_coordinates.x, 0, tile_coordinates.y)) 31 | tile_coordinates.y += TILE_SIZE 32 | tile.get_node("unit_hex/mergedBlocks(Clone)").material_override = get_tile_material(tile_index) 33 | tile_index += 1 34 | 35 | 36 | func get_tile_material(tile_index: int): 37 | var index = tile_index % TILE_MATERIALS.size() 38 | return TILE_MATERIALS[index] 39 | 40 | 41 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Godot 3D Hex Grid Tutorial 2 | This repository contains the source code for the Godot 3D Hex Grid Tutorial. 3 | 4 | [You can find the video to follow along on YouTube.](https://youtu.be/3Lt2TfP8WEw) 5 | 6 | If there is a bug or issue with the code, feel free to open an issue here or reach out on the Discord server (Discord is preferable since I check it more, but I'll eventually see it here). 7 | 8 | ## Join our Community Discord 9 | 10 | If you have questions about the tutorial or the code, or just want to connect with other developers, join our community Discord by following the link below. 11 | I or another member will be happy to help and we have an active community of developers there. We'd love to have you! 12 | 13 | [Click here to join our Discord.](https://discord.gg/e4BxZbe) 14 | 15 | ## Support my Work 16 | 17 | If you've found this tutorial series helpful, please consider supporting my work by [buying me a coffee.](https://www.buymeacoffee.com/jmbiv) 18 | 19 | Thanks so much for watching, and I hope you find these tutorials helpful! If you use them to make your own game, or just find some of the concepts I talk about helpful, I'd love to see updates on the projects you make - feel free to drop those in the Discord server. 20 | 21 |
22 | 23 | ![The thumbnail image promo for the series](marketing/cover.png) 24 | 25 | -------------------------------------------------------------------------------- /unit_hex.glb.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="scene" 4 | type="PackedScene" 5 | path="res://.import/unit_hex.glb-f72bbf94ed0603268c3f13708f00b6aa.scn" 6 | 7 | [deps] 8 | 9 | source_file="res://unit_hex.glb" 10 | dest_files=[ "res://.import/unit_hex.glb-f72bbf94ed0603268c3f13708f00b6aa.scn" ] 11 | 12 | [params] 13 | 14 | nodes/root_type="Spatial" 15 | nodes/root_name="Scene Root" 16 | nodes/root_scale=1.0 17 | nodes/custom_script="" 18 | nodes/storage=0 19 | nodes/use_legacy_names=false 20 | materials/location=1 21 | materials/storage=1 22 | materials/keep_on_reimport=true 23 | meshes/compress=true 24 | meshes/ensure_tangents=true 25 | meshes/storage=0 26 | meshes/light_baking=0 27 | meshes/lightmap_texel_size=0.1 28 | skins/use_named_skins=true 29 | external_files/store_in_subdir=false 30 | animation/import=true 31 | animation/fps=15 32 | animation/filter_script="" 33 | animation/storage=false 34 | animation/keep_custom_tracks=false 35 | animation/optimizer/enabled=true 36 | animation/optimizer/max_linear_error=0.05 37 | animation/optimizer/max_angular_error=0.01 38 | animation/optimizer/max_angle=22 39 | animation/optimizer/remove_unused_tracks=true 40 | animation/clips/amount=0 41 | animation/clip_1/name="" 42 | animation/clip_1/start_frame=0 43 | animation/clip_1/end_frame=0 44 | animation/clip_1/loops=false 45 | animation/clip_2/name="" 46 | animation/clip_2/start_frame=0 47 | animation/clip_2/end_frame=0 48 | animation/clip_2/loops=false 49 | animation/clip_3/name="" 50 | animation/clip_3/start_frame=0 51 | animation/clip_3/end_frame=0 52 | animation/clip_3/loops=false 53 | animation/clip_4/name="" 54 | animation/clip_4/start_frame=0 55 | animation/clip_4/end_frame=0 56 | animation/clip_4/loops=false 57 | animation/clip_5/name="" 58 | animation/clip_5/start_frame=0 59 | animation/clip_5/end_frame=0 60 | animation/clip_5/loops=false 61 | animation/clip_6/name="" 62 | animation/clip_6/start_frame=0 63 | animation/clip_6/end_frame=0 64 | animation/clip_6/loops=false 65 | animation/clip_7/name="" 66 | animation/clip_7/start_frame=0 67 | animation/clip_7/end_frame=0 68 | animation/clip_7/loops=false 69 | animation/clip_8/name="" 70 | animation/clip_8/start_frame=0 71 | animation/clip_8/end_frame=0 72 | animation/clip_8/loops=false 73 | animation/clip_9/name="" 74 | animation/clip_9/start_frame=0 75 | animation/clip_9/end_frame=0 76 | animation/clip_9/loops=false 77 | animation/clip_10/name="" 78 | animation/clip_10/start_frame=0 79 | animation/clip_10/end_frame=0 80 | animation/clip_10/loops=false 81 | animation/clip_11/name="" 82 | animation/clip_11/start_frame=0 83 | animation/clip_11/end_frame=0 84 | animation/clip_11/loops=false 85 | animation/clip_12/name="" 86 | animation/clip_12/start_frame=0 87 | animation/clip_12/end_frame=0 88 | animation/clip_12/loops=false 89 | animation/clip_13/name="" 90 | animation/clip_13/start_frame=0 91 | animation/clip_13/end_frame=0 92 | animation/clip_13/loops=false 93 | animation/clip_14/name="" 94 | animation/clip_14/start_frame=0 95 | animation/clip_14/end_frame=0 96 | animation/clip_14/loops=false 97 | animation/clip_15/name="" 98 | animation/clip_15/start_frame=0 99 | animation/clip_15/end_frame=0 100 | animation/clip_15/loops=false 101 | animation/clip_16/name="" 102 | animation/clip_16/start_frame=0 103 | animation/clip_16/end_frame=0 104 | animation/clip_16/loops=false 105 | animation/clip_17/name="" 106 | animation/clip_17/start_frame=0 107 | animation/clip_17/end_frame=0 108 | animation/clip_17/loops=false 109 | animation/clip_18/name="" 110 | animation/clip_18/start_frame=0 111 | animation/clip_18/end_frame=0 112 | animation/clip_18/loops=false 113 | animation/clip_19/name="" 114 | animation/clip_19/start_frame=0 115 | animation/clip_19/end_frame=0 116 | animation/clip_19/loops=false 117 | animation/clip_20/name="" 118 | animation/clip_20/start_frame=0 119 | animation/clip_20/end_frame=0 120 | animation/clip_20/loops=false 121 | animation/clip_21/name="" 122 | animation/clip_21/start_frame=0 123 | animation/clip_21/end_frame=0 124 | animation/clip_21/loops=false 125 | animation/clip_22/name="" 126 | animation/clip_22/start_frame=0 127 | animation/clip_22/end_frame=0 128 | animation/clip_22/loops=false 129 | animation/clip_23/name="" 130 | animation/clip_23/start_frame=0 131 | animation/clip_23/end_frame=0 132 | animation/clip_23/loops=false 133 | animation/clip_24/name="" 134 | animation/clip_24/start_frame=0 135 | animation/clip_24/end_frame=0 136 | animation/clip_24/loops=false 137 | animation/clip_25/name="" 138 | animation/clip_25/start_frame=0 139 | animation/clip_25/end_frame=0 140 | animation/clip_25/loops=false 141 | animation/clip_26/name="" 142 | animation/clip_26/start_frame=0 143 | animation/clip_26/end_frame=0 144 | animation/clip_26/loops=false 145 | animation/clip_27/name="" 146 | animation/clip_27/start_frame=0 147 | animation/clip_27/end_frame=0 148 | animation/clip_27/loops=false 149 | animation/clip_28/name="" 150 | animation/clip_28/start_frame=0 151 | animation/clip_28/end_frame=0 152 | animation/clip_28/loops=false 153 | animation/clip_29/name="" 154 | animation/clip_29/start_frame=0 155 | animation/clip_29/end_frame=0 156 | animation/clip_29/loops=false 157 | animation/clip_30/name="" 158 | animation/clip_30/start_frame=0 159 | animation/clip_30/end_frame=0 160 | animation/clip_30/loops=false 161 | animation/clip_31/name="" 162 | animation/clip_31/start_frame=0 163 | animation/clip_31/end_frame=0 164 | animation/clip_31/loops=false 165 | animation/clip_32/name="" 166 | animation/clip_32/start_frame=0 167 | animation/clip_32/end_frame=0 168 | animation/clip_32/loops=false 169 | animation/clip_33/name="" 170 | animation/clip_33/start_frame=0 171 | animation/clip_33/end_frame=0 172 | animation/clip_33/loops=false 173 | animation/clip_34/name="" 174 | animation/clip_34/start_frame=0 175 | animation/clip_34/end_frame=0 176 | animation/clip_34/loops=false 177 | animation/clip_35/name="" 178 | animation/clip_35/start_frame=0 179 | animation/clip_35/end_frame=0 180 | animation/clip_35/loops=false 181 | animation/clip_36/name="" 182 | animation/clip_36/start_frame=0 183 | animation/clip_36/end_frame=0 184 | animation/clip_36/loops=false 185 | animation/clip_37/name="" 186 | animation/clip_37/start_frame=0 187 | animation/clip_37/end_frame=0 188 | animation/clip_37/loops=false 189 | animation/clip_38/name="" 190 | animation/clip_38/start_frame=0 191 | animation/clip_38/end_frame=0 192 | animation/clip_38/loops=false 193 | animation/clip_39/name="" 194 | animation/clip_39/start_frame=0 195 | animation/clip_39/end_frame=0 196 | animation/clip_39/loops=false 197 | animation/clip_40/name="" 198 | animation/clip_40/start_frame=0 199 | animation/clip_40/end_frame=0 200 | animation/clip_40/loops=false 201 | animation/clip_41/name="" 202 | animation/clip_41/start_frame=0 203 | animation/clip_41/end_frame=0 204 | animation/clip_41/loops=false 205 | animation/clip_42/name="" 206 | animation/clip_42/start_frame=0 207 | animation/clip_42/end_frame=0 208 | animation/clip_42/loops=false 209 | animation/clip_43/name="" 210 | animation/clip_43/start_frame=0 211 | animation/clip_43/end_frame=0 212 | animation/clip_43/loops=false 213 | animation/clip_44/name="" 214 | animation/clip_44/start_frame=0 215 | animation/clip_44/end_frame=0 216 | animation/clip_44/loops=false 217 | animation/clip_45/name="" 218 | animation/clip_45/start_frame=0 219 | animation/clip_45/end_frame=0 220 | animation/clip_45/loops=false 221 | animation/clip_46/name="" 222 | animation/clip_46/start_frame=0 223 | animation/clip_46/end_frame=0 224 | animation/clip_46/loops=false 225 | animation/clip_47/name="" 226 | animation/clip_47/start_frame=0 227 | animation/clip_47/end_frame=0 228 | animation/clip_47/loops=false 229 | animation/clip_48/name="" 230 | animation/clip_48/start_frame=0 231 | animation/clip_48/end_frame=0 232 | animation/clip_48/loops=false 233 | animation/clip_49/name="" 234 | animation/clip_49/start_frame=0 235 | animation/clip_49/end_frame=0 236 | animation/clip_49/loops=false 237 | animation/clip_50/name="" 238 | animation/clip_50/start_frame=0 239 | animation/clip_50/end_frame=0 240 | animation/clip_50/loops=false 241 | animation/clip_51/name="" 242 | animation/clip_51/start_frame=0 243 | animation/clip_51/end_frame=0 244 | animation/clip_51/loops=false 245 | animation/clip_52/name="" 246 | animation/clip_52/start_frame=0 247 | animation/clip_52/end_frame=0 248 | animation/clip_52/loops=false 249 | animation/clip_53/name="" 250 | animation/clip_53/start_frame=0 251 | animation/clip_53/end_frame=0 252 | animation/clip_53/loops=false 253 | animation/clip_54/name="" 254 | animation/clip_54/start_frame=0 255 | animation/clip_54/end_frame=0 256 | animation/clip_54/loops=false 257 | animation/clip_55/name="" 258 | animation/clip_55/start_frame=0 259 | animation/clip_55/end_frame=0 260 | animation/clip_55/loops=false 261 | animation/clip_56/name="" 262 | animation/clip_56/start_frame=0 263 | animation/clip_56/end_frame=0 264 | animation/clip_56/loops=false 265 | animation/clip_57/name="" 266 | animation/clip_57/start_frame=0 267 | animation/clip_57/end_frame=0 268 | animation/clip_57/loops=false 269 | animation/clip_58/name="" 270 | animation/clip_58/start_frame=0 271 | animation/clip_58/end_frame=0 272 | animation/clip_58/loops=false 273 | animation/clip_59/name="" 274 | animation/clip_59/start_frame=0 275 | animation/clip_59/end_frame=0 276 | animation/clip_59/loops=false 277 | animation/clip_60/name="" 278 | animation/clip_60/start_frame=0 279 | animation/clip_60/end_frame=0 280 | animation/clip_60/loops=false 281 | animation/clip_61/name="" 282 | animation/clip_61/start_frame=0 283 | animation/clip_61/end_frame=0 284 | animation/clip_61/loops=false 285 | animation/clip_62/name="" 286 | animation/clip_62/start_frame=0 287 | animation/clip_62/end_frame=0 288 | animation/clip_62/loops=false 289 | animation/clip_63/name="" 290 | animation/clip_63/start_frame=0 291 | animation/clip_63/end_frame=0 292 | animation/clip_63/loops=false 293 | animation/clip_64/name="" 294 | animation/clip_64/start_frame=0 295 | animation/clip_64/end_frame=0 296 | animation/clip_64/loops=false 297 | animation/clip_65/name="" 298 | animation/clip_65/start_frame=0 299 | animation/clip_65/end_frame=0 300 | animation/clip_65/loops=false 301 | animation/clip_66/name="" 302 | animation/clip_66/start_frame=0 303 | animation/clip_66/end_frame=0 304 | animation/clip_66/loops=false 305 | animation/clip_67/name="" 306 | animation/clip_67/start_frame=0 307 | animation/clip_67/end_frame=0 308 | animation/clip_67/loops=false 309 | animation/clip_68/name="" 310 | animation/clip_68/start_frame=0 311 | animation/clip_68/end_frame=0 312 | animation/clip_68/loops=false 313 | animation/clip_69/name="" 314 | animation/clip_69/start_frame=0 315 | animation/clip_69/end_frame=0 316 | animation/clip_69/loops=false 317 | animation/clip_70/name="" 318 | animation/clip_70/start_frame=0 319 | animation/clip_70/end_frame=0 320 | animation/clip_70/loops=false 321 | animation/clip_71/name="" 322 | animation/clip_71/start_frame=0 323 | animation/clip_71/end_frame=0 324 | animation/clip_71/loops=false 325 | animation/clip_72/name="" 326 | animation/clip_72/start_frame=0 327 | animation/clip_72/end_frame=0 328 | animation/clip_72/loops=false 329 | animation/clip_73/name="" 330 | animation/clip_73/start_frame=0 331 | animation/clip_73/end_frame=0 332 | animation/clip_73/loops=false 333 | animation/clip_74/name="" 334 | animation/clip_74/start_frame=0 335 | animation/clip_74/end_frame=0 336 | animation/clip_74/loops=false 337 | animation/clip_75/name="" 338 | animation/clip_75/start_frame=0 339 | animation/clip_75/end_frame=0 340 | animation/clip_75/loops=false 341 | animation/clip_76/name="" 342 | animation/clip_76/start_frame=0 343 | animation/clip_76/end_frame=0 344 | animation/clip_76/loops=false 345 | animation/clip_77/name="" 346 | animation/clip_77/start_frame=0 347 | animation/clip_77/end_frame=0 348 | animation/clip_77/loops=false 349 | animation/clip_78/name="" 350 | animation/clip_78/start_frame=0 351 | animation/clip_78/end_frame=0 352 | animation/clip_78/loops=false 353 | animation/clip_79/name="" 354 | animation/clip_79/start_frame=0 355 | animation/clip_79/end_frame=0 356 | animation/clip_79/loops=false 357 | animation/clip_80/name="" 358 | animation/clip_80/start_frame=0 359 | animation/clip_80/end_frame=0 360 | animation/clip_80/loops=false 361 | animation/clip_81/name="" 362 | animation/clip_81/start_frame=0 363 | animation/clip_81/end_frame=0 364 | animation/clip_81/loops=false 365 | animation/clip_82/name="" 366 | animation/clip_82/start_frame=0 367 | animation/clip_82/end_frame=0 368 | animation/clip_82/loops=false 369 | animation/clip_83/name="" 370 | animation/clip_83/start_frame=0 371 | animation/clip_83/end_frame=0 372 | animation/clip_83/loops=false 373 | animation/clip_84/name="" 374 | animation/clip_84/start_frame=0 375 | animation/clip_84/end_frame=0 376 | animation/clip_84/loops=false 377 | animation/clip_85/name="" 378 | animation/clip_85/start_frame=0 379 | animation/clip_85/end_frame=0 380 | animation/clip_85/loops=false 381 | animation/clip_86/name="" 382 | animation/clip_86/start_frame=0 383 | animation/clip_86/end_frame=0 384 | animation/clip_86/loops=false 385 | animation/clip_87/name="" 386 | animation/clip_87/start_frame=0 387 | animation/clip_87/end_frame=0 388 | animation/clip_87/loops=false 389 | animation/clip_88/name="" 390 | animation/clip_88/start_frame=0 391 | animation/clip_88/end_frame=0 392 | animation/clip_88/loops=false 393 | animation/clip_89/name="" 394 | animation/clip_89/start_frame=0 395 | animation/clip_89/end_frame=0 396 | animation/clip_89/loops=false 397 | animation/clip_90/name="" 398 | animation/clip_90/start_frame=0 399 | animation/clip_90/end_frame=0 400 | animation/clip_90/loops=false 401 | animation/clip_91/name="" 402 | animation/clip_91/start_frame=0 403 | animation/clip_91/end_frame=0 404 | animation/clip_91/loops=false 405 | animation/clip_92/name="" 406 | animation/clip_92/start_frame=0 407 | animation/clip_92/end_frame=0 408 | animation/clip_92/loops=false 409 | animation/clip_93/name="" 410 | animation/clip_93/start_frame=0 411 | animation/clip_93/end_frame=0 412 | animation/clip_93/loops=false 413 | animation/clip_94/name="" 414 | animation/clip_94/start_frame=0 415 | animation/clip_94/end_frame=0 416 | animation/clip_94/loops=false 417 | animation/clip_95/name="" 418 | animation/clip_95/start_frame=0 419 | animation/clip_95/end_frame=0 420 | animation/clip_95/loops=false 421 | animation/clip_96/name="" 422 | animation/clip_96/start_frame=0 423 | animation/clip_96/end_frame=0 424 | animation/clip_96/loops=false 425 | animation/clip_97/name="" 426 | animation/clip_97/start_frame=0 427 | animation/clip_97/end_frame=0 428 | animation/clip_97/loops=false 429 | animation/clip_98/name="" 430 | animation/clip_98/start_frame=0 431 | animation/clip_98/end_frame=0 432 | animation/clip_98/loops=false 433 | animation/clip_99/name="" 434 | animation/clip_99/start_frame=0 435 | animation/clip_99/end_frame=0 436 | animation/clip_99/loops=false 437 | animation/clip_100/name="" 438 | animation/clip_100/start_frame=0 439 | animation/clip_100/end_frame=0 440 | animation/clip_100/loops=false 441 | animation/clip_101/name="" 442 | animation/clip_101/start_frame=0 443 | animation/clip_101/end_frame=0 444 | animation/clip_101/loops=false 445 | animation/clip_102/name="" 446 | animation/clip_102/start_frame=0 447 | animation/clip_102/end_frame=0 448 | animation/clip_102/loops=false 449 | animation/clip_103/name="" 450 | animation/clip_103/start_frame=0 451 | animation/clip_103/end_frame=0 452 | animation/clip_103/loops=false 453 | animation/clip_104/name="" 454 | animation/clip_104/start_frame=0 455 | animation/clip_104/end_frame=0 456 | animation/clip_104/loops=false 457 | animation/clip_105/name="" 458 | animation/clip_105/start_frame=0 459 | animation/clip_105/end_frame=0 460 | animation/clip_105/loops=false 461 | animation/clip_106/name="" 462 | animation/clip_106/start_frame=0 463 | animation/clip_106/end_frame=0 464 | animation/clip_106/loops=false 465 | animation/clip_107/name="" 466 | animation/clip_107/start_frame=0 467 | animation/clip_107/end_frame=0 468 | animation/clip_107/loops=false 469 | animation/clip_108/name="" 470 | animation/clip_108/start_frame=0 471 | animation/clip_108/end_frame=0 472 | animation/clip_108/loops=false 473 | animation/clip_109/name="" 474 | animation/clip_109/start_frame=0 475 | animation/clip_109/end_frame=0 476 | animation/clip_109/loops=false 477 | animation/clip_110/name="" 478 | animation/clip_110/start_frame=0 479 | animation/clip_110/end_frame=0 480 | animation/clip_110/loops=false 481 | animation/clip_111/name="" 482 | animation/clip_111/start_frame=0 483 | animation/clip_111/end_frame=0 484 | animation/clip_111/loops=false 485 | animation/clip_112/name="" 486 | animation/clip_112/start_frame=0 487 | animation/clip_112/end_frame=0 488 | animation/clip_112/loops=false 489 | animation/clip_113/name="" 490 | animation/clip_113/start_frame=0 491 | animation/clip_113/end_frame=0 492 | animation/clip_113/loops=false 493 | animation/clip_114/name="" 494 | animation/clip_114/start_frame=0 495 | animation/clip_114/end_frame=0 496 | animation/clip_114/loops=false 497 | animation/clip_115/name="" 498 | animation/clip_115/start_frame=0 499 | animation/clip_115/end_frame=0 500 | animation/clip_115/loops=false 501 | animation/clip_116/name="" 502 | animation/clip_116/start_frame=0 503 | animation/clip_116/end_frame=0 504 | animation/clip_116/loops=false 505 | animation/clip_117/name="" 506 | animation/clip_117/start_frame=0 507 | animation/clip_117/end_frame=0 508 | animation/clip_117/loops=false 509 | animation/clip_118/name="" 510 | animation/clip_118/start_frame=0 511 | animation/clip_118/end_frame=0 512 | animation/clip_118/loops=false 513 | animation/clip_119/name="" 514 | animation/clip_119/start_frame=0 515 | animation/clip_119/end_frame=0 516 | animation/clip_119/loops=false 517 | animation/clip_120/name="" 518 | animation/clip_120/start_frame=0 519 | animation/clip_120/end_frame=0 520 | animation/clip_120/loops=false 521 | animation/clip_121/name="" 522 | animation/clip_121/start_frame=0 523 | animation/clip_121/end_frame=0 524 | animation/clip_121/loops=false 525 | animation/clip_122/name="" 526 | animation/clip_122/start_frame=0 527 | animation/clip_122/end_frame=0 528 | animation/clip_122/loops=false 529 | animation/clip_123/name="" 530 | animation/clip_123/start_frame=0 531 | animation/clip_123/end_frame=0 532 | animation/clip_123/loops=false 533 | animation/clip_124/name="" 534 | animation/clip_124/start_frame=0 535 | animation/clip_124/end_frame=0 536 | animation/clip_124/loops=false 537 | animation/clip_125/name="" 538 | animation/clip_125/start_frame=0 539 | animation/clip_125/end_frame=0 540 | animation/clip_125/loops=false 541 | animation/clip_126/name="" 542 | animation/clip_126/start_frame=0 543 | animation/clip_126/end_frame=0 544 | animation/clip_126/loops=false 545 | animation/clip_127/name="" 546 | animation/clip_127/start_frame=0 547 | animation/clip_127/end_frame=0 548 | animation/clip_127/loops=false 549 | animation/clip_128/name="" 550 | animation/clip_128/start_frame=0 551 | animation/clip_128/end_frame=0 552 | animation/clip_128/loops=false 553 | animation/clip_129/name="" 554 | animation/clip_129/start_frame=0 555 | animation/clip_129/end_frame=0 556 | animation/clip_129/loops=false 557 | animation/clip_130/name="" 558 | animation/clip_130/start_frame=0 559 | animation/clip_130/end_frame=0 560 | animation/clip_130/loops=false 561 | animation/clip_131/name="" 562 | animation/clip_131/start_frame=0 563 | animation/clip_131/end_frame=0 564 | animation/clip_131/loops=false 565 | animation/clip_132/name="" 566 | animation/clip_132/start_frame=0 567 | animation/clip_132/end_frame=0 568 | animation/clip_132/loops=false 569 | animation/clip_133/name="" 570 | animation/clip_133/start_frame=0 571 | animation/clip_133/end_frame=0 572 | animation/clip_133/loops=false 573 | animation/clip_134/name="" 574 | animation/clip_134/start_frame=0 575 | animation/clip_134/end_frame=0 576 | animation/clip_134/loops=false 577 | animation/clip_135/name="" 578 | animation/clip_135/start_frame=0 579 | animation/clip_135/end_frame=0 580 | animation/clip_135/loops=false 581 | animation/clip_136/name="" 582 | animation/clip_136/start_frame=0 583 | animation/clip_136/end_frame=0 584 | animation/clip_136/loops=false 585 | animation/clip_137/name="" 586 | animation/clip_137/start_frame=0 587 | animation/clip_137/end_frame=0 588 | animation/clip_137/loops=false 589 | animation/clip_138/name="" 590 | animation/clip_138/start_frame=0 591 | animation/clip_138/end_frame=0 592 | animation/clip_138/loops=false 593 | animation/clip_139/name="" 594 | animation/clip_139/start_frame=0 595 | animation/clip_139/end_frame=0 596 | animation/clip_139/loops=false 597 | animation/clip_140/name="" 598 | animation/clip_140/start_frame=0 599 | animation/clip_140/end_frame=0 600 | animation/clip_140/loops=false 601 | animation/clip_141/name="" 602 | animation/clip_141/start_frame=0 603 | animation/clip_141/end_frame=0 604 | animation/clip_141/loops=false 605 | animation/clip_142/name="" 606 | animation/clip_142/start_frame=0 607 | animation/clip_142/end_frame=0 608 | animation/clip_142/loops=false 609 | animation/clip_143/name="" 610 | animation/clip_143/start_frame=0 611 | animation/clip_143/end_frame=0 612 | animation/clip_143/loops=false 613 | animation/clip_144/name="" 614 | animation/clip_144/start_frame=0 615 | animation/clip_144/end_frame=0 616 | animation/clip_144/loops=false 617 | animation/clip_145/name="" 618 | animation/clip_145/start_frame=0 619 | animation/clip_145/end_frame=0 620 | animation/clip_145/loops=false 621 | animation/clip_146/name="" 622 | animation/clip_146/start_frame=0 623 | animation/clip_146/end_frame=0 624 | animation/clip_146/loops=false 625 | animation/clip_147/name="" 626 | animation/clip_147/start_frame=0 627 | animation/clip_147/end_frame=0 628 | animation/clip_147/loops=false 629 | animation/clip_148/name="" 630 | animation/clip_148/start_frame=0 631 | animation/clip_148/end_frame=0 632 | animation/clip_148/loops=false 633 | animation/clip_149/name="" 634 | animation/clip_149/start_frame=0 635 | animation/clip_149/end_frame=0 636 | animation/clip_149/loops=false 637 | animation/clip_150/name="" 638 | animation/clip_150/start_frame=0 639 | animation/clip_150/end_frame=0 640 | animation/clip_150/loops=false 641 | animation/clip_151/name="" 642 | animation/clip_151/start_frame=0 643 | animation/clip_151/end_frame=0 644 | animation/clip_151/loops=false 645 | animation/clip_152/name="" 646 | animation/clip_152/start_frame=0 647 | animation/clip_152/end_frame=0 648 | animation/clip_152/loops=false 649 | animation/clip_153/name="" 650 | animation/clip_153/start_frame=0 651 | animation/clip_153/end_frame=0 652 | animation/clip_153/loops=false 653 | animation/clip_154/name="" 654 | animation/clip_154/start_frame=0 655 | animation/clip_154/end_frame=0 656 | animation/clip_154/loops=false 657 | animation/clip_155/name="" 658 | animation/clip_155/start_frame=0 659 | animation/clip_155/end_frame=0 660 | animation/clip_155/loops=false 661 | animation/clip_156/name="" 662 | animation/clip_156/start_frame=0 663 | animation/clip_156/end_frame=0 664 | animation/clip_156/loops=false 665 | animation/clip_157/name="" 666 | animation/clip_157/start_frame=0 667 | animation/clip_157/end_frame=0 668 | animation/clip_157/loops=false 669 | animation/clip_158/name="" 670 | animation/clip_158/start_frame=0 671 | animation/clip_158/end_frame=0 672 | animation/clip_158/loops=false 673 | animation/clip_159/name="" 674 | animation/clip_159/start_frame=0 675 | animation/clip_159/end_frame=0 676 | animation/clip_159/loops=false 677 | animation/clip_160/name="" 678 | animation/clip_160/start_frame=0 679 | animation/clip_160/end_frame=0 680 | animation/clip_160/loops=false 681 | animation/clip_161/name="" 682 | animation/clip_161/start_frame=0 683 | animation/clip_161/end_frame=0 684 | animation/clip_161/loops=false 685 | animation/clip_162/name="" 686 | animation/clip_162/start_frame=0 687 | animation/clip_162/end_frame=0 688 | animation/clip_162/loops=false 689 | animation/clip_163/name="" 690 | animation/clip_163/start_frame=0 691 | animation/clip_163/end_frame=0 692 | animation/clip_163/loops=false 693 | animation/clip_164/name="" 694 | animation/clip_164/start_frame=0 695 | animation/clip_164/end_frame=0 696 | animation/clip_164/loops=false 697 | animation/clip_165/name="" 698 | animation/clip_165/start_frame=0 699 | animation/clip_165/end_frame=0 700 | animation/clip_165/loops=false 701 | animation/clip_166/name="" 702 | animation/clip_166/start_frame=0 703 | animation/clip_166/end_frame=0 704 | animation/clip_166/loops=false 705 | animation/clip_167/name="" 706 | animation/clip_167/start_frame=0 707 | animation/clip_167/end_frame=0 708 | animation/clip_167/loops=false 709 | animation/clip_168/name="" 710 | animation/clip_168/start_frame=0 711 | animation/clip_168/end_frame=0 712 | animation/clip_168/loops=false 713 | animation/clip_169/name="" 714 | animation/clip_169/start_frame=0 715 | animation/clip_169/end_frame=0 716 | animation/clip_169/loops=false 717 | animation/clip_170/name="" 718 | animation/clip_170/start_frame=0 719 | animation/clip_170/end_frame=0 720 | animation/clip_170/loops=false 721 | animation/clip_171/name="" 722 | animation/clip_171/start_frame=0 723 | animation/clip_171/end_frame=0 724 | animation/clip_171/loops=false 725 | animation/clip_172/name="" 726 | animation/clip_172/start_frame=0 727 | animation/clip_172/end_frame=0 728 | animation/clip_172/loops=false 729 | animation/clip_173/name="" 730 | animation/clip_173/start_frame=0 731 | animation/clip_173/end_frame=0 732 | animation/clip_173/loops=false 733 | animation/clip_174/name="" 734 | animation/clip_174/start_frame=0 735 | animation/clip_174/end_frame=0 736 | animation/clip_174/loops=false 737 | animation/clip_175/name="" 738 | animation/clip_175/start_frame=0 739 | animation/clip_175/end_frame=0 740 | animation/clip_175/loops=false 741 | animation/clip_176/name="" 742 | animation/clip_176/start_frame=0 743 | animation/clip_176/end_frame=0 744 | animation/clip_176/loops=false 745 | animation/clip_177/name="" 746 | animation/clip_177/start_frame=0 747 | animation/clip_177/end_frame=0 748 | animation/clip_177/loops=false 749 | animation/clip_178/name="" 750 | animation/clip_178/start_frame=0 751 | animation/clip_178/end_frame=0 752 | animation/clip_178/loops=false 753 | animation/clip_179/name="" 754 | animation/clip_179/start_frame=0 755 | animation/clip_179/end_frame=0 756 | animation/clip_179/loops=false 757 | animation/clip_180/name="" 758 | animation/clip_180/start_frame=0 759 | animation/clip_180/end_frame=0 760 | animation/clip_180/loops=false 761 | animation/clip_181/name="" 762 | animation/clip_181/start_frame=0 763 | animation/clip_181/end_frame=0 764 | animation/clip_181/loops=false 765 | animation/clip_182/name="" 766 | animation/clip_182/start_frame=0 767 | animation/clip_182/end_frame=0 768 | animation/clip_182/loops=false 769 | animation/clip_183/name="" 770 | animation/clip_183/start_frame=0 771 | animation/clip_183/end_frame=0 772 | animation/clip_183/loops=false 773 | animation/clip_184/name="" 774 | animation/clip_184/start_frame=0 775 | animation/clip_184/end_frame=0 776 | animation/clip_184/loops=false 777 | animation/clip_185/name="" 778 | animation/clip_185/start_frame=0 779 | animation/clip_185/end_frame=0 780 | animation/clip_185/loops=false 781 | animation/clip_186/name="" 782 | animation/clip_186/start_frame=0 783 | animation/clip_186/end_frame=0 784 | animation/clip_186/loops=false 785 | animation/clip_187/name="" 786 | animation/clip_187/start_frame=0 787 | animation/clip_187/end_frame=0 788 | animation/clip_187/loops=false 789 | animation/clip_188/name="" 790 | animation/clip_188/start_frame=0 791 | animation/clip_188/end_frame=0 792 | animation/clip_188/loops=false 793 | animation/clip_189/name="" 794 | animation/clip_189/start_frame=0 795 | animation/clip_189/end_frame=0 796 | animation/clip_189/loops=false 797 | animation/clip_190/name="" 798 | animation/clip_190/start_frame=0 799 | animation/clip_190/end_frame=0 800 | animation/clip_190/loops=false 801 | animation/clip_191/name="" 802 | animation/clip_191/start_frame=0 803 | animation/clip_191/end_frame=0 804 | animation/clip_191/loops=false 805 | animation/clip_192/name="" 806 | animation/clip_192/start_frame=0 807 | animation/clip_192/end_frame=0 808 | animation/clip_192/loops=false 809 | animation/clip_193/name="" 810 | animation/clip_193/start_frame=0 811 | animation/clip_193/end_frame=0 812 | animation/clip_193/loops=false 813 | animation/clip_194/name="" 814 | animation/clip_194/start_frame=0 815 | animation/clip_194/end_frame=0 816 | animation/clip_194/loops=false 817 | animation/clip_195/name="" 818 | animation/clip_195/start_frame=0 819 | animation/clip_195/end_frame=0 820 | animation/clip_195/loops=false 821 | animation/clip_196/name="" 822 | animation/clip_196/start_frame=0 823 | animation/clip_196/end_frame=0 824 | animation/clip_196/loops=false 825 | animation/clip_197/name="" 826 | animation/clip_197/start_frame=0 827 | animation/clip_197/end_frame=0 828 | animation/clip_197/loops=false 829 | animation/clip_198/name="" 830 | animation/clip_198/start_frame=0 831 | animation/clip_198/end_frame=0 832 | animation/clip_198/loops=false 833 | animation/clip_199/name="" 834 | animation/clip_199/start_frame=0 835 | animation/clip_199/end_frame=0 836 | animation/clip_199/loops=false 837 | animation/clip_200/name="" 838 | animation/clip_200/start_frame=0 839 | animation/clip_200/end_frame=0 840 | animation/clip_200/loops=false 841 | animation/clip_201/name="" 842 | animation/clip_201/start_frame=0 843 | animation/clip_201/end_frame=0 844 | animation/clip_201/loops=false 845 | animation/clip_202/name="" 846 | animation/clip_202/start_frame=0 847 | animation/clip_202/end_frame=0 848 | animation/clip_202/loops=false 849 | animation/clip_203/name="" 850 | animation/clip_203/start_frame=0 851 | animation/clip_203/end_frame=0 852 | animation/clip_203/loops=false 853 | animation/clip_204/name="" 854 | animation/clip_204/start_frame=0 855 | animation/clip_204/end_frame=0 856 | animation/clip_204/loops=false 857 | animation/clip_205/name="" 858 | animation/clip_205/start_frame=0 859 | animation/clip_205/end_frame=0 860 | animation/clip_205/loops=false 861 | animation/clip_206/name="" 862 | animation/clip_206/start_frame=0 863 | animation/clip_206/end_frame=0 864 | animation/clip_206/loops=false 865 | animation/clip_207/name="" 866 | animation/clip_207/start_frame=0 867 | animation/clip_207/end_frame=0 868 | animation/clip_207/loops=false 869 | animation/clip_208/name="" 870 | animation/clip_208/start_frame=0 871 | animation/clip_208/end_frame=0 872 | animation/clip_208/loops=false 873 | animation/clip_209/name="" 874 | animation/clip_209/start_frame=0 875 | animation/clip_209/end_frame=0 876 | animation/clip_209/loops=false 877 | animation/clip_210/name="" 878 | animation/clip_210/start_frame=0 879 | animation/clip_210/end_frame=0 880 | animation/clip_210/loops=false 881 | animation/clip_211/name="" 882 | animation/clip_211/start_frame=0 883 | animation/clip_211/end_frame=0 884 | animation/clip_211/loops=false 885 | animation/clip_212/name="" 886 | animation/clip_212/start_frame=0 887 | animation/clip_212/end_frame=0 888 | animation/clip_212/loops=false 889 | animation/clip_213/name="" 890 | animation/clip_213/start_frame=0 891 | animation/clip_213/end_frame=0 892 | animation/clip_213/loops=false 893 | animation/clip_214/name="" 894 | animation/clip_214/start_frame=0 895 | animation/clip_214/end_frame=0 896 | animation/clip_214/loops=false 897 | animation/clip_215/name="" 898 | animation/clip_215/start_frame=0 899 | animation/clip_215/end_frame=0 900 | animation/clip_215/loops=false 901 | animation/clip_216/name="" 902 | animation/clip_216/start_frame=0 903 | animation/clip_216/end_frame=0 904 | animation/clip_216/loops=false 905 | animation/clip_217/name="" 906 | animation/clip_217/start_frame=0 907 | animation/clip_217/end_frame=0 908 | animation/clip_217/loops=false 909 | animation/clip_218/name="" 910 | animation/clip_218/start_frame=0 911 | animation/clip_218/end_frame=0 912 | animation/clip_218/loops=false 913 | animation/clip_219/name="" 914 | animation/clip_219/start_frame=0 915 | animation/clip_219/end_frame=0 916 | animation/clip_219/loops=false 917 | animation/clip_220/name="" 918 | animation/clip_220/start_frame=0 919 | animation/clip_220/end_frame=0 920 | animation/clip_220/loops=false 921 | animation/clip_221/name="" 922 | animation/clip_221/start_frame=0 923 | animation/clip_221/end_frame=0 924 | animation/clip_221/loops=false 925 | animation/clip_222/name="" 926 | animation/clip_222/start_frame=0 927 | animation/clip_222/end_frame=0 928 | animation/clip_222/loops=false 929 | animation/clip_223/name="" 930 | animation/clip_223/start_frame=0 931 | animation/clip_223/end_frame=0 932 | animation/clip_223/loops=false 933 | animation/clip_224/name="" 934 | animation/clip_224/start_frame=0 935 | animation/clip_224/end_frame=0 936 | animation/clip_224/loops=false 937 | animation/clip_225/name="" 938 | animation/clip_225/start_frame=0 939 | animation/clip_225/end_frame=0 940 | animation/clip_225/loops=false 941 | animation/clip_226/name="" 942 | animation/clip_226/start_frame=0 943 | animation/clip_226/end_frame=0 944 | animation/clip_226/loops=false 945 | animation/clip_227/name="" 946 | animation/clip_227/start_frame=0 947 | animation/clip_227/end_frame=0 948 | animation/clip_227/loops=false 949 | animation/clip_228/name="" 950 | animation/clip_228/start_frame=0 951 | animation/clip_228/end_frame=0 952 | animation/clip_228/loops=false 953 | animation/clip_229/name="" 954 | animation/clip_229/start_frame=0 955 | animation/clip_229/end_frame=0 956 | animation/clip_229/loops=false 957 | animation/clip_230/name="" 958 | animation/clip_230/start_frame=0 959 | animation/clip_230/end_frame=0 960 | animation/clip_230/loops=false 961 | animation/clip_231/name="" 962 | animation/clip_231/start_frame=0 963 | animation/clip_231/end_frame=0 964 | animation/clip_231/loops=false 965 | animation/clip_232/name="" 966 | animation/clip_232/start_frame=0 967 | animation/clip_232/end_frame=0 968 | animation/clip_232/loops=false 969 | animation/clip_233/name="" 970 | animation/clip_233/start_frame=0 971 | animation/clip_233/end_frame=0 972 | animation/clip_233/loops=false 973 | animation/clip_234/name="" 974 | animation/clip_234/start_frame=0 975 | animation/clip_234/end_frame=0 976 | animation/clip_234/loops=false 977 | animation/clip_235/name="" 978 | animation/clip_235/start_frame=0 979 | animation/clip_235/end_frame=0 980 | animation/clip_235/loops=false 981 | animation/clip_236/name="" 982 | animation/clip_236/start_frame=0 983 | animation/clip_236/end_frame=0 984 | animation/clip_236/loops=false 985 | animation/clip_237/name="" 986 | animation/clip_237/start_frame=0 987 | animation/clip_237/end_frame=0 988 | animation/clip_237/loops=false 989 | animation/clip_238/name="" 990 | animation/clip_238/start_frame=0 991 | animation/clip_238/end_frame=0 992 | animation/clip_238/loops=false 993 | animation/clip_239/name="" 994 | animation/clip_239/start_frame=0 995 | animation/clip_239/end_frame=0 996 | animation/clip_239/loops=false 997 | animation/clip_240/name="" 998 | animation/clip_240/start_frame=0 999 | animation/clip_240/end_frame=0 1000 | animation/clip_240/loops=false 1001 | animation/clip_241/name="" 1002 | animation/clip_241/start_frame=0 1003 | animation/clip_241/end_frame=0 1004 | animation/clip_241/loops=false 1005 | animation/clip_242/name="" 1006 | animation/clip_242/start_frame=0 1007 | animation/clip_242/end_frame=0 1008 | animation/clip_242/loops=false 1009 | animation/clip_243/name="" 1010 | animation/clip_243/start_frame=0 1011 | animation/clip_243/end_frame=0 1012 | animation/clip_243/loops=false 1013 | animation/clip_244/name="" 1014 | animation/clip_244/start_frame=0 1015 | animation/clip_244/end_frame=0 1016 | animation/clip_244/loops=false 1017 | animation/clip_245/name="" 1018 | animation/clip_245/start_frame=0 1019 | animation/clip_245/end_frame=0 1020 | animation/clip_245/loops=false 1021 | animation/clip_246/name="" 1022 | animation/clip_246/start_frame=0 1023 | animation/clip_246/end_frame=0 1024 | animation/clip_246/loops=false 1025 | animation/clip_247/name="" 1026 | animation/clip_247/start_frame=0 1027 | animation/clip_247/end_frame=0 1028 | animation/clip_247/loops=false 1029 | animation/clip_248/name="" 1030 | animation/clip_248/start_frame=0 1031 | animation/clip_248/end_frame=0 1032 | animation/clip_248/loops=false 1033 | animation/clip_249/name="" 1034 | animation/clip_249/start_frame=0 1035 | animation/clip_249/end_frame=0 1036 | animation/clip_249/loops=false 1037 | animation/clip_250/name="" 1038 | animation/clip_250/start_frame=0 1039 | animation/clip_250/end_frame=0 1040 | animation/clip_250/loops=false 1041 | animation/clip_251/name="" 1042 | animation/clip_251/start_frame=0 1043 | animation/clip_251/end_frame=0 1044 | animation/clip_251/loops=false 1045 | animation/clip_252/name="" 1046 | animation/clip_252/start_frame=0 1047 | animation/clip_252/end_frame=0 1048 | animation/clip_252/loops=false 1049 | animation/clip_253/name="" 1050 | animation/clip_253/start_frame=0 1051 | animation/clip_253/end_frame=0 1052 | animation/clip_253/loops=false 1053 | animation/clip_254/name="" 1054 | animation/clip_254/start_frame=0 1055 | animation/clip_254/end_frame=0 1056 | animation/clip_254/loops=false 1057 | animation/clip_255/name="" 1058 | animation/clip_255/start_frame=0 1059 | animation/clip_255/end_frame=0 1060 | animation/clip_255/loops=false 1061 | animation/clip_256/name="" 1062 | animation/clip_256/start_frame=0 1063 | animation/clip_256/end_frame=0 1064 | animation/clip_256/loops=false 1065 | --------------------------------------------------------------------------------