|
@@ -0,0 +1,26 @@
|
|
|
+[gd_scene load_steps=5 format=2]
|
|
|
+
|
|
|
+[ext_resource path="res://component/entity/wheel/BikeWheel.png" type="Texture" id=1]
|
|
|
+[ext_resource path="res://component/entity/wheel/Wheel.gd" type="Script" id=2]
|
|
|
+
|
|
|
+[sub_resource type="PhysicsMaterial" id=2]
|
|
|
+bounce = 0.9
|
|
|
+
|
|
|
+[sub_resource type="CircleShape2D" id=1]
|
|
|
+radius = 33.1812
|
|
|
+
|
|
|
+[node name="Wheel" type="RigidBody2D"]
|
|
|
+mass = 0.1
|
|
|
+physics_material_override = SubResource( 2 )
|
|
|
+angular_damp = 0.0
|
|
|
+script = ExtResource( 2 )
|
|
|
+min_linear_speed = 200
|
|
|
+max_linear_speed = 400
|
|
|
+max_angular_speed = 25.132
|
|
|
+
|
|
|
+[node name="Shape" type="CollisionShape2D" parent="."]
|
|
|
+shape = SubResource( 1 )
|
|
|
+
|
|
|
+[node name="Sprite" type="Sprite" parent="."]
|
|
|
+scale = Vector2( 2, 2 )
|
|
|
+texture = ExtResource( 1 )
|