-
Notifications
You must be signed in to change notification settings - Fork 413
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement RenderAttachedBlockView on ChunkRendererRegion (#3300)
(cherry picked from commit 9f8c23c)
- Loading branch information
1 parent
22fb02c
commit b680c0d
Showing
3 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
...client/java/net/fabricmc/fabric/mixin/rendering/data/client/ChunkRendererRegionMixin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Copyright (c) 2016, 2017, 2018, 2019 FabricMC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package net.fabricmc.fabric.mixin.rendering.data.client; | ||
|
||
import org.spongepowered.asm.mixin.Mixin; | ||
|
||
import net.minecraft.client.render.chunk.ChunkRendererRegion; | ||
import net.minecraft.world.WorldView; | ||
|
||
import net.fabricmc.fabric.api.rendering.data.v1.RenderAttachedBlockView; | ||
|
||
/** | ||
* Since {@link RenderAttachedBlockView} is only automatically implemented on {@link WorldView} instances and | ||
* {@link ChunkRendererRegion} does not implement {@link WorldView}, this mixin manually implements | ||
* {@link RenderAttachedBlockView} on {@link ChunkRendererRegion}. The BlockView API v2 implementation ensures | ||
* that all default method implementations of {@link RenderAttachedBlockView} work here automatically. | ||
*/ | ||
@Mixin(ChunkRendererRegion.class) | ||
public abstract class ChunkRendererRegionMixin implements RenderAttachedBlockView { | ||
} |
11 changes: 11 additions & 0 deletions
11
...attachment-v1/src/client/resources/fabric-rendering-data-attachment-v1.client.mixins.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"required": true, | ||
"package": "net.fabricmc.fabric.mixin.rendering.data.client", | ||
"compatibilityLevel": "JAVA_17", | ||
"client": [ | ||
"ChunkRendererRegionMixin" | ||
], | ||
"injectors": { | ||
"defaultRequire": 1 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters