I was making an inclined plane simulator and I met an issue. When my force of kinetic friction was larger than my parallel force, my block moved up the slope. I have tried to make two seperate conditions on my time ticker(time → time +0.03) when t is less than a certain value and when my friction force is less than my parallel force . the only problem is that I cannot make two distinct conditions. any solutions?
Could you share your file so we can look at it?
You can just stack conditions one after the other, to require them all to be true. t->t+0.03 {condition1} {condition2}
See here for example.
Didn’t realize you could put conditionals on the ticker!