소스 검색

Merge pull request #71054 from MarioLiebisch/fix-animationplayer-calltrack-strings

Properly stringify args for Call Method Tracks
Rémi Verschelde 2 년 전
부모
커밋
73c53cca81
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      editor/animation_track_editor.cpp

+ 2 - 2
editor/animation_track_editor.cpp

@@ -2228,7 +2228,7 @@ void AnimationTrackEdit::draw_key(int p_index, float p_pixels_sec, int p_x, bool
 			if (i > 0) {
 				text += ", ";
 			}
-			text += String(args[i]);
+			text += args[i].get_construct_string();
 		}
 		text += ")";
 
@@ -2540,7 +2540,7 @@ String AnimationTrackEdit::get_tooltip(const Point2 &p_pos) const {
 						if (i > 0) {
 							text += ", ";
 						}
-						text += String(args[i]);
+						text += args[i].get_construct_string();
 					}
 					text += ")\n";