So, I am experimenting with an idea where a variable changes in a passage, & once I reload the passage (via <<script>>Engine.show()<</script>>) new paragraphs appear based on those variables. I like the short ease-in transition between paragraphs appearing, but every time the passage reloads, all the words in the passage also fade back in because of Twine's transition effect of (grabbed from Sugarcube's source code):
.passage {
line-height: 1.75;
text-align: left;
transition: opacity 400ms ease-in;
}
My question is, is there any way to keep that transtiion between paragraphs (wtihout doing, say, <<timed 1.0s t8n>>Paragraph here<</timed>> for each one) while eliminating the passage transition effect? Or would I need to write completely new code?