Compare commits

..

8 commits

1703 changed files with 3584 additions and 31105 deletions
TODO.mdrecipeTODO.txt
src
client/java/su/a71/new_soviet
main/generated/assets/new_soviet/blockstates
aquamarine_tiles.jsonbeige_concrete.jsonbeige_wallpaper.jsonbig_diorite_tiles.jsonbig_granite_tiles.jsonbig_green_tiles.jsonbig_sand_bricks.jsonbig_sand_tiles.jsonbig_tuff_tiles.jsonblue_concrete.jsonblue_linoleum.jsonblue_warning.jsonbrick_tiles.jsonbrown_linoleum.jsonbrown_wallpaper.jsoncalcite_tiles.jsonchiseled_birch_door.jsonchiseled_mangrove_door.jsonchiseled_oak_door.jsonchiseled_spruce_door.jsoncracked_aquamarine_tiles.jsoncracked_beige_concrete.jsoncracked_blue_concrete.jsoncracked_brick_tiles.jsoncracked_calcite_tiles.jsoncracked_dark_brick_tiles.jsoncracked_deepslate_tiles.jsoncracked_diorite_bricks.jsoncracked_dripstone_tiles.jsoncracked_glazed_aquamarine_tiles.jsoncracked_glazed_brick_tiles.jsoncracked_glazed_light_blue_tiles.jsoncracked_glazed_teal_tiles.jsoncracked_glazed_white_tiles.jsoncracked_green_bricks.jsoncracked_green_bricks_2.jsoncracked_green_concrete.jsoncracked_green_white_tiles.jsoncracked_light_blue_tiles.jsoncracked_nii_wall_1.jsoncracked_red_bricks.jsoncracked_red_concrete.jsoncracked_sand_bricks.jsoncracked_sand_tiles.jsoncracked_teal_tiles.jsoncracked_tuff_bricks.jsoncracked_tuff_tiles.jsoncracked_white_concrete.jsoncracked_whitewash.jsoncracked_yellow_concrete.jsoncross_acacia_planks.jsoncross_birch_planks.jsoncross_brown_linoleum.jsoncross_crimson_planks.jsoncross_dark_oak_planks.jsoncross_jungle_planks.jsoncross_mangrove_planks.jsoncross_oak_planks.jsoncross_orange_linoleum.jsoncross_sand_tiles.jsoncross_spruce_planks.jsoncyan_linoleum.jsoncyan_warning.jsondark_brick_tiles.jsondeepslate_tiles.jsondiagonal_calcite_tiles.jsondiagonal_deepslate_tiles.jsondiorite_bricks.jsondirty_aquamarine_tiles.jsondirty_brick_tiles.jsondirty_dark_brick_tiles.jsondripstone_bricks.jsondripstone_tiles.jsonglazed_aquamarine_tiles.jsonglazed_brick_tiles.jsonglazed_light_blue_tiles.jsonglazed_teal_tiles.jsonglazed_white_tiles.jsongray_linoleum.jsongray_warning.jsongreen_bricks.jsongreen_bricks_2.jsongreen_concrete.jsongreen_linoleum.jsongreen_wallpaper.jsongreen_warning.jsongreen_white_tiles.jsonherringbone_acacia_planks.jsonherringbone_birch_planks.jsonherringbone_crimson_planks.jsonherringbone_dark_oak_planks.jsonherringbone_jungle_planks.jsonherringbone_mangrove_planks.jsonherringbone_oak_planks.jsonherringbone_parquet.jsonherringbone_sand_tiles.json

View file

@ -3,15 +3,14 @@
* Make good README.md stuff
=== STUFF TO ADD/FIX ===
* Add slab and stair variations
* Add fences
* Add windows
* Add (with functionality) present appliance/furniture/electronics textures
* Add achievement criterion for dice and advancements
* PO2 wall (fix)
* Add advancements (with datagen)
* What's switch type 2?
* All the lamps (lamp posts too!)
* Cigarette and handrail are BROKEN and the code is a MESS sorry, but it needs CLEANUP
* Concrete with bars should have proper hitbox, placeable upside down, and act like dripstone
* Fix post lamp hitboxes
=== ACHIEVEMENTS ===
Kolkhoz warrior - kill a zombie, skeleton, creeper and spider with a sickle

View file

@ -1,18 +1,18 @@
aquamarine recipe
whitewash recipe
concrete recipe
concrete with bars recipe
parquet recipe
linoleum recipe
metal plating recipe
crate recipe
po-2 recipe
no wallpaper recipes (intended?)
no handrail recipe
no nutrient block recipe (intended? compressed bread?)
light bulb recipe
sigarette recipe
siren recipe
no landmine recipe - intended
switch recipe
checkers and chess recipe
* aquamarine recipe
* whitewash recipe
* concrete recipe
* concrete with bars recipe
* parquet recipe
* linoleum recipe
* metal plating recipe
* crate recipe
* po-2 recipe
* no wallpaper recipes (intended?)
* no handrail recipe
* no nutrient block recipe (intended? compressed bread?)
* light bulb recipe
* cigarette recipe
* siren recipe
* no landmine recipe - intended
* switch recipe
* checkers and chess recipe

View file

@ -6,7 +6,6 @@ import net.fabricmc.api.Environment;
import net.fabricmc.fabric.api.blockrenderlayer.v1.BlockRenderLayerMap;
import net.fabricmc.fabric.api.client.rendering.v1.BlockEntityRendererRegistry;
import net.minecraft.client.render.RenderLayer;
import su.a71.new_soviet.entity.TVBlockEntity;
import su.a71.new_soviet.registration.NSE_Blocks;
import su.a71.new_soviet.registration.NSE_Custom;

View file

@ -4,31 +4,23 @@ import net.fabricmc.api.EnvType;
import net.fabricmc.api.Environment;
import net.minecraft.block.BlockState;
import net.minecraft.block.SignBlock;
import net.minecraft.block.entity.SignText;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.font.TextRenderer;
import net.minecraft.client.render.VertexConsumerProvider;
import net.minecraft.client.render.block.entity.BlockEntityRenderer;
import net.minecraft.client.render.block.entity.BlockEntityRendererFactory;
import net.minecraft.client.render.block.entity.SignBlockEntityRenderer;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.text.OrderedText;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.RotationAxis;
import net.minecraft.util.math.Vec3d;
import org.joml.Matrix4f;
import su.a71.new_soviet.entity.TVBlockEntity;
import java.util.List;
import su.a71.new_soviet.entities.TVBlockEntity;
@Environment(EnvType.CLIENT)
public class TVBlockEntityRenderer implements BlockEntityRenderer<TVBlockEntity> {
private static TextRenderer textRenderer;
// private static TextRenderer textRenderer;
private static final Vec3d TEXT_OFFSET = new Vec3d(0.0, 0.3333333432674408, 0.046666666865348816);
public TVBlockEntityRenderer(BlockEntityRendererFactory.Context ctx) {
textRenderer = ctx.getTextRenderer();
// textRenderer = ctx.getTextRenderer();
}
@Override

Some files were not shown because too many files have changed in this diff Show more