Upload data/community_contribution.jsonl with huggingface_hub
Browse files
data/community_contribution.jsonl
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"instruction": "نظام مشي وركض متطور", "input": "", "output": "var move_speed = walk_speed if !Input.is_action_pressed('run') else run_speed", "system": "You are an expert Godot 4 developer. Write clean GDScript."}
|
| 2 |
+
{"instruction": "كود تدوير السلاح باتجاه الماوس", "input": "", "output": "func _process(delta): look_at(get_global_mouse_position())", "system": "You are an expert Godot 4 developer. Write clean GDScript."}
|
| 3 |
+
{"instruction": "نظام جاذبية مخصص للاعب", "input": "", "output": "velocity.y += custom_gravity * delta", "system": "You are an expert Godot 4 developer. Write clean GDScript."}
|
| 4 |
+
{"instruction": "كود كشف التصادم (RayCast)", "input": "", "output": "if raycast.is_colliding(): var object = raycast.get_collider()", "system": "You are an expert Godot 4 developer. Write clean GDScript."}
|