You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -133,7 +133,7 @@ Creating a new instance of the ChatBubble's class
133
133
134
134
LivingEntity target =// This can be any player or living entity like a zombie! Above this entity the chat bubbles will be shown!
135
135
136
-
ChatBubble chatBubble =newChatBubble(target, ChatBubble.RenderMode.NEARBY); // RenderMode nearby means all players near the target will see the chat bubbles
136
+
ChatBubble chatBubble =newChatBubble(target, RenderMode.NEARBY); // RenderMode nearby means all players near the target will see the chat bubbles
137
137
138
138
// Now you can modify the chat bubble
139
139
chatBubble.setText("Test")
@@ -142,7 +142,7 @@ chatBubble.setText("Test")
142
142
.setBillboard(Display.Billboard.VERTICAL)
143
143
.setMaxLineWidth(500)
144
144
.setSeeThroughBlocks(false);
145
-
// For more properties look into the ChatBubble class or in your IDE's auto complete
145
+
// For more properties look into the ChatBubble class or in your IDE's auto completions for that object
146
146
```
147
147
148
148
To spawn that chat bubble you need the bubble generator ↓
0 commit comments