Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help  Rope bumping
#2
Hi,

You're essentially re-creating the rope from scratch every frame by rebuilding its blueprint path. This will of course obliterate performance.

Blueprints are only intended to define the initial shape and properties of the rope, as they're assets stored in disk (similar to audio files or animation clips) so creating/editing them is considerably costly. At runtime, you're supposed to deal exclusively with particles. I'd also suggest taking a look at Obi's architectural design, to better understand how actors and blueprints relate.

There's a sample scene included with the asset ("HosePump") that does this very thing you're trying to do: simulating water/air passing trough the rope by changing its thickness at runtime. Maybe it can be helpful for you?

kind regards,
Reply


Messages In This Thread
Rope bumping - by Alexander34 - 31-07-2023, 10:37 AM
RE: Rope bumping - by josemendez - 31-07-2023, 10:46 AM
RE: Rope bumping - by Alexander34 - 31-07-2023, 10:57 AM