qt打包提示确实Qt5OpenGL.dll,可以用这个,或者下载威龙触摸屏程序安装后也可以得到
2023-02-03 15:29:20 269KB qt 3d 开发语言
1
在U3D开发过程中经常使用到多场景的切换,有同步SceneManager.LoadScene()和异步SceneManager.LoadSceneAsync()两种方法,同步的话一般就会卡住界面直到加载完成,使用异步的话一般都做一个加载的进度条,每次切换的时候都需要一个加载动画,所以需要建一个专门的过渡加载场景来进行统一加载,也可以避免场景直接切换出现的黑屏。
2022-12-23 10:03:51 3.24MB U3D SceneManager 场景管理
1
【元胞自动机】基于元胞自动机模拟3D森林火灾模型含Matlab源码
2022-12-15 19:57:50 1.04MB matlab 3d 开发语言
1
资源分类:Python库 所属语言:Python 资源全名:pytorch3d-0.4.0-cp37-cp37m-macosx_10_9_x86_64.whl 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
2022-07-12 10:26:59 515KB python pytorch 3d 开发语言
基于qml实现实现物体绕自身坐标系旋转
2022-05-19 11:24:00 1.62MB qt 3d 开发语言
1
通过实例介绍android平台上通过GLSurfaceView来进行3D开发,开发一些很炫的UI界面空间
2022-05-09 20:00:13 12KB android 3d
1
python库。 资源全名:dijkstra3d-1.10.0-cp37-cp37m-win32.whl
2022-02-24 14:07:40 187KB python 3d 开发语言 后端
# 主要设计 1、游戏面板生成显示 2、方块设计 3、键盘监听,方向键控制数字移动 4、数字移动逻辑算法处理 5、数字累加到2048,游戏胜利
2022-02-07 09:06:02 644KB java 游戏 3d 开发语言
OGRE中文开发手册,可以用于 3D游戏开发,三维GIS开发,希望能帮助大家
2021-12-07 13:45:29 1.75MB OGRE 3D开发 GIS 游戏
1
Cocos Creator 3D开发入门----CocosCreator3D篮球.zip import { _decorator, Component, Node, RigidBodyComponent, PhysicMaterial, ColliderComponent } from "cc"; const { ccclass, property } = _decorator; @ccclass("PhyMat") export class PhyMat extends Component { @property private friction: number = 0; // 摩擦力 @property private restitution: number = 0; // 弹力 /* class member could be defined like this */ // dummy = ''; /* use `property` decorator if your want the member to be serializable */ // @property // serializableDummy = 0; onLoad(): void{ let comps: Array = this.node.getComponents(ColliderComponent) as Array; let mat = new PhysicMaterial(); mat.friction = this.friction; mat.restitution = this.restitution; for(let i = 0; i < comps.length; i++){ comps[i].material = mat; } } start () { // Your initialization goes here. } // update (deltaTime: number) { // // Your update function goes here. // } }
2021-09-13 11:03:32 1.06MB CocosCreator3D篮球
1