AxisMarker2D.tscn 929 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [gd_scene load_steps=2 format=2]
  2. [ext_resource path="res://marker/AxisMarker2D.gd" type="Script" id=1]
  3. [node name="AxisMarker" type="Node2D"]
  4. script = ExtResource( 1 )
  5. [node name="Origin" type="Node" parent="."]
  6. [node name="Line" type="Line2D" parent="Origin"]
  7. points = PoolVector2Array( 0, 0, 0, 0 )
  8. width = 0.1
  9. default_color = Color( 0, 0.266667, 1, 1 )
  10. __meta__ = {
  11. "_edit_lock_": true
  12. }
  13. [node name="Center" type="Line2D" parent="."]
  14. points = PoolVector2Array( -0.05, 0, 0.05, 0 )
  15. width = 0.1
  16. default_color = Color( 0, 0.266667, 1, 1 )
  17. __meta__ = {
  18. "_edit_lock_": true
  19. }
  20. [node name="X" type="Line2D" parent="."]
  21. points = PoolVector2Array( 0.05, 0, 1, 0 )
  22. width = 0.1
  23. default_color = Color( 0.866667, 0, 0, 1 )
  24. __meta__ = {
  25. "_edit_lock_": true
  26. }
  27. [node name="Y" type="Line2D" parent="."]
  28. points = PoolVector2Array( 0, 0.05, 0, 1 )
  29. width = 0.1
  30. default_color = Color( 0, 0.866667, 0, 1 )
  31. __meta__ = {
  32. "_edit_lock_": true
  33. }