Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
CreatureChat
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Jobs
Commits
Open sidebar
Public
CreatureChat
Commits
4ccd9944
Commit
4ccd9944
authored
Jan 12, 2025
by
Jonathan Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduced size of player skin face on chat bubble, to match sizes of custom icons (for consistency)
parent
697f0469
Pipeline
#13285
passed with stages
in 2 minutes 11 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
CHANGELOG.md
CHANGELOG.md
+1
-0
BubbleRenderer.java
src/client/java/com/owlmaddie/ui/BubbleRenderer.java
+6
-0
No files found.
CHANGELOG.md
View file @
4ccd9944
...
@@ -17,6 +17,7 @@ All notable changes to **CreatureChat** are documented in this file. The format
...
@@ -17,6 +17,7 @@ All notable changes to **CreatureChat** are documented in this file. The format
### Changed
### Changed
-
Seperated Player and Entity message broadcasts (different packets for simplicity)
-
Seperated Player and Entity message broadcasts (different packets for simplicity)
-
Reduced size of player skin face on chat bubble, to match sizes of custom icons (for consistency)
### Fixed
### Fixed
-
Fixed death messages for mobs with no chat data
-
Fixed death messages for mobs with no chat data
...
...
src/client/java/com/owlmaddie/ui/BubbleRenderer.java
View file @
4ccd9944
...
@@ -288,6 +288,12 @@ public class BubbleRenderer {
...
@@ -288,6 +288,12 @@ public class BubbleRenderer {
.
color
(
255
,
255
,
255
,
255
).
texture
(
newU1
,
newV1
).
light
(
light
).
overlay
(
overlay
).
next
();
.
color
(
255
,
255
,
255
,
255
).
texture
(
newU1
,
newV1
).
light
(
light
).
overlay
(
overlay
).
next
();
}
}
}
else
{
}
else
{
// make skin appear smaller and centered
x
+=
2
;
y
+=
2
;
width
-=
4
;
height
-=
4
;
// Normal face coordinates
// Normal face coordinates
float
u1
=
8.0
F
/
64.0
F
;
float
u1
=
8.0
F
/
64.0
F
;
float
v1
=
8.0
F
/
64.0
F
;
float
v1
=
8.0
F
/
64.0
F
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment