Daz3D crashes when defining a long array of integer values
Neverdie Axis
Posts: 10
Why Daz crashes when I try to define this array in the Script IDE pane?
Running the simple code below (just the array definition makes my Daz to crash):
Had to upload the code on pastebin, the forum doesnt like me to paste such a long array.
This is less than the actual number of vertices in a G3F body. I'm trying to define the array to select some of the vertices.
Post edited by Neverdie Axis on
Comments
The crash report says:
so on the face of it it appears to be a Qt issue. Have you tried splitting the array assignment down - assign the first blick of vertices, then add in another blocj and another to build the complete list?
This seems to work, and builds an array with all the values up to the limit - if you were actually skipping some you would need to add code for those.
Yes, just splitted the big array into 3 smaller arrays and now it no longer crashes...