[现版本作废]伪装45度站台方块代码分享
本帖最后由 Hobbytimeblank 于 2025-1-18 18:08 编辑由于ANTE1.0.0版本修改的内容过多,该代码只能在0.5.4版本生效,新版本请勿使用
我前几天基于@Harlotte的ANTE模组写了我此生第一份成功的.js代码
实现的功能就是使用(A)NTE的装饰物件制作了可自定义材质的45度站台(其实其他的模型理论上也可以,是同一个原理)
仅供参考!仅供参考!请勿直接完全照搬!
//加载模型
//这里我使用了两个模型,第一个负责上下表面,第二个模型负责侧面
let rawModel = ModelManager.loadRawModel(Resources.manager(), Resources.id("mtrsteamloco:models/platform_tall.obj"), null);
let rawModel_side = ModelManager.loadRawModel(Resources.manager(), Resources.id("mtrsteamloco:models/platform_tall_side.obj"), null);
//翻转 V 坐标
rawModel.applyUVMirror(false, true);
rawModel_side.applyUVMirror(false, true);
//设置初始纹理,其中tex是站台的底部和顶部。tex_side是站台的侧面(四面共用纹理)
let tex = "mtrsteamloco:models/platform_45.png";
let tex_side = "mtrsteamloco:models/platform_45_side.png";
function create(ctx, state, entity){
state.platform_side = new DynamicModelHolder();
state.platform_side.uploadLater(rawModel_side);
state.platform = new DynamicModelHolder();
state.platform.uploadLater(rawModel);
//如果这个装饰物件是刚刚被放出来的,那么将其初始化,为其放入默认的方块数据
if(entity.data.get("texture")==null && entity.data.get("texture_side")==null){
state.tex=tex;
state.tex_side=tex_side;
entity.data.put("texture", tex);
entity.data.put("texture_side", tex_side);
}
}
function render(ctx, state, entity){
//获得DynamicModelHolder中的模型
if(state.platform_side.getUploadedModel()!= null){
plsModel = state.platform_side.getUploadedModel();}
if(state.platform.getUploadedModel()!= null){
plModel = state.platform.getUploadedModel();}
//检测方块数据是否发生改变,如果改变则修改方块的纹理
//要求用户自行填写资源位置,这也意味着你可以加载任何位置包括原版、资源包、模组内的任何图片作为站台的纹理
file = String(entity.data.get("texture"));
file_side = String(entity.data.get("texture_side"));
if (file != state.tex){
state.tex=file;
plModel.replaceAllTexture(Resources.id(state.tex));
}
if (file_side != state.tex_side){
state.tex_side=file_side;
plsModel.replaceAllTexture(Resources.id(state.tex_side));
}
//绘制模型
ctx.drawModel(plsModel, null);
ctx.drawModel(plModel, null);
}
//当模型离开渲染距离时,关闭它以释放内存
function dispose(ctx, state, entity){
state.platform.close();
state.platform_side.close();}
/*常用方块ID列表
默认顶部:mtrsteamloco:models/platform_45.png
默认侧边:mtrsteamloco:models/platform_45_side.png
石头:minecraft:textures/block/stone.png
木板:minecraft:textures/block/oak_planks.png
黑曜石:minecraft:textures/block/obsidian.png
玻璃:minecraft:textures/block/glass.png
*/
放到游戏中大概是这个样子:
https://s21.ax1x.com/2024/12/31/pAzqnUS.png https://s21.ax1x.com/2024/12/31/pAzqu4g.md.png
默认纹理下的站台被修改成磨制花岗岩纹理的站台
可以通过修改装饰物件方块键值对来修改纹理。
https://s21.ax1x.com/2024/12/31/pAzqmE8.png
目前该内容仍然在测试,感谢各位程序员们提出优化性能、功能方面的合理意见
最后的最后 提前一个小时祝大家2025年新年快乐!
有点意思! Harlotte 发表于 2025-1-1 09:26
有点意思!
但是你那个当做站台好像即使√上了也没法使列车开门
Hobbytimeblank 发表于 2025-1-1 09:35
但是你那个当做站台好像即使√上了也没法使列车开门
?不应该啊 我这里测试好使着呢 嘶 Harlotte 发表于 2025-1-2 06:32
?不应该啊 我这里测试好使着呢 嘶
当然我们建筑党有自己的解决方法:在装饰物件下面放一层原版站台 Hobbytimeblank 发表于 2025-1-2 19:25
当然我们建筑党有自己的解决方法:在装饰物件下面放一层原版站台
是当时代码写错了 遍历错了:( 已经修好了
页:
[1]