We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
In fun create(entityName: String, data: SpawnData): Entity in GameWorld, the implementation is:
fun create(entityName: String, data: SpawnData): Entity
if (pooledEntity != null) { pooledEntity.setPosition3D(data.x, data.y, data.z) return pooledEntity }
the position is reset, however, other data elements are not. Requires thinking through the specification.
The text was updated successfully, but these errors were encountered:
AlmasB
No branches or pull requests
In
fun create(entityName: String, data: SpawnData): Entity
in GameWorld, the implementation is:the position is reset, however, other data elements are not. Requires thinking through the specification.
The text was updated successfully, but these errors were encountered: