摘要: 目前存在问题 1. Revit 机电模型导出带材质的模型到 Unity 2. Revit 机电模型颜色是通过过滤器(仅改变视图并未改变实际材质颜色)实现分类,导出带材质的模型并不能实际解决 3. 数据存储问题 目标预计实现 相同过滤器的管道一个材质、成组,通过材质颜色区分不同种类,为后续 同一类型管 阅读全文
posted @ 2023-03-21 13:25 Felix-Fu 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1.认识比特币 1.1 比特币 比特币是一种P2P形式的数字货币,本质是一种电子账本 。 1.2 比特币解决的问题 高度自治 无国界贸易 不可串改 隐私安全 2.去中心化模型 去中心化(英语:decentralization)是互联网发展过程中形成的社会关系形态和内容产生形态,是相对于“中心化”而言 阅读全文
posted @ 2023-03-21 11:13 Felix-Fu 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Finishing the Map Generator MapGenerator using System.Collections; using System.Collections.Generic; using Unity.VisualScripting; using UnityEngine; p 阅读全文
posted @ 2023-03-21 11:04 Felix-Fu 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Map Navigation——地图烘培 MapGenerator using System.Collections; using System.Collections.Generic; using Unity.VisualScripting; using UnityEngine; public c 阅读全文
posted @ 2023-03-21 11:03 Felix-Fu 阅读(9) 评论(0) 推荐(0) 编辑
摘要: Map Connectivity——地图连通性 MapGenerator using System.Collections; using System.Collections.Generic; using UnityEngine; public class MapGenerator : MonoBe 阅读全文
posted @ 2023-03-21 11:01 Felix-Fu 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Obstacle Placement——障碍物生成 Utility using System.Collections; public static class Utility { //洗牌算法 public static T[] ShuffleArray<T>(T[] array, int seed 阅读全文
posted @ 2023-03-21 10:54 Felix-Fu 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Tile Map——地图 MapGenerator using System.Collections; using System.Collections.Generic; using UnityEngine; public class MapGenerator : MonoBehaviour { p 阅读全文
posted @ 2023-03-21 10:52 Felix-Fu 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Some Loose Ends——一些待解决的问题 解决了Enemy攻击Player造成伤害,优化了Projectile在Enemy内部生成无法造成伤害以及Projectile在Enemy边界的问题,补充了相关注释,下一步可以利用**TakeHit(float damage, RaycastHit 阅读全文
posted @ 2023-03-21 10:43 Felix-Fu 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Enemy Attacks——敌人攻击 Enemy using System.Collections; using UnityEngine; using UnityEngine.AI; [RequireComponent(typeof(NavMeshAgent))] public class Ene 阅读全文
posted @ 2023-03-21 10:39 Felix-Fu 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Spawn System——生成系统 Spawned using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class Spawned : MonoBeh 阅读全文
posted @ 2023-03-21 10:33 Felix-Fu 阅读(14) 评论(0) 推荐(0) 编辑
摘要: Damage ystem——伤害系统 Projectile using System.Collections; using System.Collections.Generic; using UnityEngine; public class Projectile : MonoBehaviour { 阅读全文
posted @ 2023-03-21 10:32 Felix-Fu 阅读(15) 评论(0) 推荐(0) 编辑
摘要: Enemies——敌人 Enemy using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.AI; [RequireComponent(typeof(NavMes 阅读全文
posted @ 2023-03-21 10:31 Felix-Fu 阅读(16) 评论(0) 推荐(0) 编辑
摘要: Gun System——武器系统 Player using UnityEngine; using System.Collections; [RequireComponent(typeof(PlayerController))] [RequireComponent(typeof(GunControll 阅读全文
posted @ 2023-03-21 10:30 Felix-Fu 阅读(16) 评论(0) 推荐(0) 编辑