Skip to content

Commit

Permalink
8341010: TriangleMesh.vertexFormat Property default value is wrong
Browse files Browse the repository at this point in the history
Reviewed-by: kcr, angorya

(cherry picked from commit fbcbc9803f418a3f4fa1a591ad170cd52146cac9)
  • Loading branch information
FlorianKirmaier authored and besidev committed Oct 14, 2024
1 parent c2971fa commit ef2df77
Show file tree
Hide file tree
Showing 2 changed files with 226 additions and 187 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public final VertexFormat getVertexFormat() {

public final ObjectProperty<VertexFormat> vertexFormatProperty() {
if (vertexFormat == null) {
vertexFormat = new SimpleObjectProperty<>(TriangleMesh.this, "vertexFormat") {
vertexFormat = new SimpleObjectProperty<>(TriangleMesh.this, "vertexFormat", VertexFormat.POINT_TEXCOORD) {

@Override
protected void invalidated() {
Expand Down
Loading

0 comments on commit ef2df77

Please sign in to comment.