TextBundle should derive Clone #15668
Labels
A-Text
Rendering and layout for characters
C-Usability
A targeted quality-of-life change that makes Bevy easier to use
D-Straightforward
Simple bug fixes and API improvements, docs, test and examples
S-Ready-For-Implementation
This issue is ready for an implementation PR. Go for it!
X-Controversial
There is active debate or serious implications around merging this PR
What problem does this solve or what need does it fill?
Being able to use preconfigured bundles as templates is something that I find very useful for flexible entity spawning strategies. In all cases so far, I havent had an issue calling
clone
on any bundle, but for some reasonTextBundle
does not driveClone
. This makes it difficult to provide a preconfigured template bundle for re-use.What solution would you like?
Simply
derive(Clone)
onTextBundle
.What alternative(s) have you considered?
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered: