///<summary>Paints vertex colors on a mesh component in a specified color.</summary>
 public static void PaintVerticesSingleColor(StaticMeshComponent StaticMeshComponent, LinearColor FillColor, bool bConvertToSRGB) =>
 MeshVertexPainterKismetLibrary_methods.PaintVerticesSingleColor_method.Invoke(StaticMeshComponent, FillColor, bConvertToSRGB);
 ///<summary>Removes vertex colors on a mesh component</summary>
 public static void RemovePaintedVertices(StaticMeshComponent StaticMeshComponent) =>
 MeshVertexPainterKismetLibrary_methods.RemovePaintedVertices_method.Invoke(StaticMeshComponent);
 ///<summary>Paints vertex colors on a mesh component lerping from the start to the end color along the specified axis.</summary>
 public static void PaintVerticesLerpAlongAxis(StaticMeshComponent StaticMeshComponent, LinearColor StartColor, LinearColor EndColor, EVertexPaintAxis Axis, bool bConvertToSRGB) =>
 MeshVertexPainterKismetLibrary_methods.PaintVerticesLerpAlongAxis_method.Invoke(StaticMeshComponent, StartColor, EndColor, Axis, bConvertToSRGB);