ios - Text in Cocos3d -
i developing iphone application uses cocos3d draw shapes , images. want draw text. can please guide me on how draw text using cocos3d?
thanks in advance!
if want embed text in 3d scene (like add sign on wall within 3d scene), can use cc3bitmaplabelnode
. cc3demomashup
app includes example of how this, in addbitmaplabel
method of cc3demomashupscene
. example more need, because uses specialized subclass of cc3bitmaplabelnode
wraps text around cylinder. give idea of how use cc3bitmaplabelnode
.
if want add text 2d overlay part of user interface (like button, menu, or message user), use standard cocos2d components that. can add these 2d components customized cc3layer
. see cc3demomashuplayer
example of how this.
Comments
Post a Comment