Skip to content

OpenMCBE/Third-Person-Nametag

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ThirdPersonNametag

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.

Features

  • Shows your nametag when in third person view.
  • Windows support: v26.2.1
  • Android support: v26.2.1

Requirements

Platform Launcher
Windows LeviLauncher (GDK)
Android LeviLauncher (Android)

Installation

Windows

  1. Download ThirdPersonNametag.dll from Releases or GitHub Actions.
  2. Install LeviLauncher (GDK).
  3. Add ThirdPersonNametag.dll as a mod in LeviLauncher.
  4. Launch Minecraft through LeviLauncher.

Android

  1. Download libThirdPersonNametag.so from Releases or GitHub Actions.
  2. Install LeviLauncher (Android).
  3. Add libThirdPersonNametag.so as a mod in LeviLauncher.
  4. Launch Minecraft through LeviLauncher.

Building

This is a single codebase that compiles to both targets.

Windows DLL

cmake -B build -A x64 -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release
# Output: build/Release/ThirdPersonNametag.dll

Android SO (requires NDK)

cmake -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.so

CI builds both automatically via GitHub Actions.

Packages

 
 
 

Contributors