mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2026-01-04 23:10:08 +01:00
Opened them, saved all scenes, ran the project. Did necessary fixes here and there, fixed some warnings (but some remain in bigger demos). Did not port JRPG demo yet (#306) nor the two platformer demos.
16 lines
364 B
Plaintext
16 lines
364 B
Plaintext
[gd_scene load_steps=3 format=2]
|
|
|
|
[ext_resource path="res://player/bullet/bullet.gd" type="Script" id=1]
|
|
|
|
[sub_resource type="CircleShape2D" id=1]
|
|
radius = 12.0
|
|
|
|
[node name="Bullet" type="KinematicBody2D"]
|
|
collision_layer = 2
|
|
collision_mask = 2
|
|
script = ExtResource( 1 )
|
|
|
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
|
shape = SubResource( 1 )
|
|
|