Godot-Native-AI-Brain / data /community_contribution.jsonl
Soea511's picture
Upload data/community_contribution.jsonl with huggingface_hub
2ed6293 verified
{"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."}
{"instruction": "كود تدوير السلاح باتجاه الماوس", "input": "", "output": "func _process(delta): look_at(get_global_mouse_position())", "system": "You are an expert Godot 4 developer. Write clean GDScript."}
{"instruction": "نظام جاذبية مخصص للاعب", "input": "", "output": "velocity.y += custom_gravity * delta", "system": "You are an expert Godot 4 developer. Write clean GDScript."}
{"instruction": "كود كشف التصادم (RayCast)", "input": "", "output": "if raycast.is_colliding(): var object = raycast.get_collider()", "system": "You are an expert Godot 4 developer. Write clean GDScript."}