Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Player Database
  • Skin Browser
  • Cape Gallery
  • Community Hub
  • Seed Vault

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Shin's Tensura Race Models
ModLicenseRef-All-Rights-Reserved

Shin's Tensura Race Models

A library addon for Tensura Reincarnated which allows others to add models to their races

1.2K
Downloads
3
Followers
3 months ago
Updated
📦
6
Versions
libraryforge
Download Latestv1.9View on Modrinth

📖About Shin's Tensura Race Models

Shin's Tensura Race Models allows others to add their own custom models to Tensura: Reincarnated races.

Currently built for T:R 1.0.2.5, Forge version 43.5.0

HOW TO USE

Using it is simple. First, add it to your addon as a dependency using CurseMaven or any other method
Following that, the race you wish to give a model to needs to implement the IModeledRaces class. Doing so will add several new functions which need to be filled in within the race, such as the class name of the model the race will use, the size of its shadow, and the eye height. 

Additionally, 2 functions need to be created. The first is on the client event bus, and looks as follows:

@SubscribeEvent
public static void registerLayerDefinitions(EntityRenderersEvent.RegisterLayerDefinitions event) {
event.registerLayerDefinition(ExampleModel.LAYER_LOCATION, ExampleModel::createBodyLayer);
}

replacing ExampleModel with the model you are using. And the second one is that you need to mixin into the TensuraRacesRenderer file's init function and add your race to the list, as is done in the example below:

@Mixin(TensuraRacesRenderer.class)
public abstract class AddRaceMixin<T extends LivingEntity, M extends EntityModel> {

@Shadow
@Final
@Mutable
private List<HierarchicalModel<T>> models;

@Inject(method = "<init>", at = @At("TAIL"))
private void onInit(RenderLayerParent parent, CallbackInfo ci) {
    List<HierarchicalModel<T>> newModels = new ArrayList<>(this.models);

    EntityModelSet modelSet = Minecraft.getInstance().getEntityModels();
    newModels.add(new ExampleModel<>(modelSet.bakeLayer(ExampleModel.LAYER_LOCATION)));

    this.models = List.copyOf(newModels);
}

}

The model file itself also needs several edits, however a working example model is included within the mod itself which you are free to look at to edit your entities code to match it. 

That should be all you need to do, only other things to note would be that, even though the model is using the Hierarchical format, i have not yet finished allowing you to use hierarchical animations properly. There is a partially implemented crouch and running keyframe start however i am unsure if it fully works yet. 

ADDITIONAL INFO

Tensura addons that started it:

Tensura: KumoDesu
Tensura: Bleach

This mod is fine to be used to utilise when making addons provided the addon is used and the code is not simply copied exactly and taken to be used within your mod itself.

👥 Team & Contributors

S
ShinNoShinigamiOwner
Gremter
Gremter
Member

⚙️ Compatibility

Environment
✅ Client & Server
Loaders
forge
Minecraft Versions
1.19.2

🔗 Links

Modrinth Page