rj-action-library/Runtime/Math/_Unity_To_Godot_.txt

20 lines
297 B
Plaintext
Raw Permalink Normal View History

2024-08-11 17:38:06 +00:00
Match: \.magnitude
Replace: .Length()
Match: \.normalized
Replace: .Normalized()
Match: Vector3\.(Lerp|Dot)\(\s*(\w+)\s*,\s*
Replace: $2.$1(
Match: Vector3\.Distance\(\s*(\w+)\s*,\s*
Replace: $1.DistanceTo(
Match: \.x
Replace: .X
2024-09-14 06:41:52 +00:00
Match: \.y
2024-08-11 17:38:06 +00:00
Replace: .Y
Match: \.z
Replace: .Z