A simple mod to show your own nametag in third person view for Minecraft Bedrock Edition — available for both Windows and Android.
I'd like to thank Dasciam for helping create the Android port. It wouldn't have been possible without her help.
- Shows your nametag when in third person view.
- Windows support: v26.2.1
- Android support: v26.2.1
| Platform | Launcher |
|---|---|
| Windows | LeviLauncher (GDK) |
| Android | LeviLauncher (Android) |
- Download
ThirdPersonNametag.dllfrom Releases or GitHub Actions. - Install LeviLauncher (GDK).
- Add
ThirdPersonNametag.dllas a mod in LeviLauncher. - Launch Minecraft through LeviLauncher.
- Download
libThirdPersonNametag.sofrom Releases or GitHub Actions. - Install LeviLauncher (Android).
- Add
libThirdPersonNametag.soas a mod in LeviLauncher. - Launch Minecraft through LeviLauncher.
This is a single codebase that compiles to both targets.
cmake -B build -A x64 -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release
# Output: build/Release/ThirdPersonNametag.dllcmake -B build \
-DCMAKE_TOOLCHAIN_FILE=$NDK/build/cmake/android.toolchain.cmake \
-DANDROID_ABI=arm64-v8a \
-DANDROID_PLATFORM=android-24 \
-DCMAKE_BUILD_TYPE=Release
cmake --build build
# Output: build/libThirdPersonNametag.soCI builds both automatically via GitHub Actions.