Resizable Streams

Started by Spikira, November 02, 2021, 11:48:56 AM

Previous topic - Next topic
Please add the ability to resize Stream entities, unless there is a way to do it already that I have missed.

Have you tried using

entity:set_size()

From the map script or something? It'd be pretty annoying to use that way, but I'm curious if it'd work.

The other workaround is on of course just placing a bunch of 16x16 streams, I haven't run into any issues with that. What's your use case?

Not sure if entity:set_size() was tested a lot on streams, but that should be a solution in theory.
Another possible workaround is to make a custom entity model (they are resizable) whose only effect is to dynamically create streams on all its 16x16 squares with map:create_stream().

Thanks for the solutions. I'll try resizing through scripts and if that doesn't work, I'll try the custom entity method instead.