GDScript:三目运算符

之前以为GDScript没有三目运算符,实际上它就在这里if x else

func get_max(a:int,b:int) -> int:
	return a if a > b else b

你可能感兴趣的:(#,Godot,基础)