An open API service indexing awesome lists of open source software.

https://github.com/inventwithdean/floatingplatformsusinginterpolation

Unreal Engine CPP
https://github.com/inventwithdean/floatingplatformsusinginterpolation

cpp game-development gameplay-mechanics unrealengine

Last synced: 3 months ago
JSON representation

Unreal Engine CPP

Awesome Lists containing this project

README

        

# Floating Platforms [C++] [Unreal Version 4.27.2]
### Contains source files for Floating Platforms completing their path in defined time using Linear Interpolation implemented in Unreal Engine using C++.

## UPDATE 2023
# Floating Platforms [C++] [Unreal Version 5.3.2]
### Updated source files for Floating Platforms completing their path in defined time using Linear Interpolation implemented in Unreal Engine using C++
It calculates distance to travel, and unit vector in direction to travel in BeginPlay. Then uses elapsed time since last stop of platform to calculate how much distance on the line it should be now with the help of unit vector. It uses Linear Interpolation of course :)