Hello,
I’m not sure where to start with this one. Bought a Rhino 8 licence on day one, super excited to try out the new features. On opening a Rhino 7 .gh file with c# components killed Rhino 8, not even a crash screen. The only work around I have is to pause the solver when opening the files and then once they are open, then run the solver. Pretty tedious.
Contacted support and the only thing they could suggest was turning off the V-Ray plug-in. Not helpful.
The new Script editor is better than the old one. However, since I used to use Script Parasite and directly edit scripts in Visual Studio, it’s a real step backwards. (as Script Parasite no longer works, which is annoying).
Tried writing some code in the editor:
private void RunScript(IEnumerable<double> x, out object a)
{
// Write your logic here
double[] vals = new double[x.Count];
for (int i = 0; i< x.Count; i++){
vals[i] = x * x;
}
a = vals;
}
That didn’t work.
I’m not a professional coder, just a designer that uses code.
Then I tried to look for some documentation around the new Script Editor. Nothing.
Looked on the forums, lots of discussion around Python, not much around C#.
Starting to regret the upgrade.
Ash