04-04-2019, 03:37 PM
This might be a very stupid issue im having, but i've tried to getting the Print function in the Script operator to work for a while now and i just cant seem to get it to print anything into the Maxscript listener.
My tyflow node has an event that has the Script Operator and just a Display, and the script node has this script in it:
The internal log in the Script operator says: "Script executed successfully!".
What i imagine would happen is that when i scrub the playerhead in the timeline i would get spammed with "hello" in the Maxscript Listener for every frame it was simulated, but nothing happens in the listener except the default messages tyflow prints there.
Please hit me in the head with the obvious issue im having with this xP
My tyflow node has an event that has the Script Operator and just a Display, and the script node has this script in it:
Code:
public void simulationStart()
{
}
public void simulationStep()
{
Print("hello");
}
public void simulationStepThreaded(int startInx, int endInx, int threadInx)
{
}
The internal log in the Script operator says: "Script executed successfully!".
What i imagine would happen is that when i scrub the playerhead in the timeline i would get spammed with "hello" in the Maxscript Listener for every frame it was simulated, but nothing happens in the listener except the default messages tyflow prints there.
Please hit me in the head with the obvious issue im having with this xP