码迷,mamicode.com
首页 >  
搜索关键字:unity time    ( 60599个结果
爬取搜狐新闻科技类
#-*-coding:utf-8-*- # @Time :2021/4/22 7:08 # @Author:shuaichao # @File :.py # @Software: PyCharm from bs4 import BeautifulSoup #网页解析,获悉数据.231 import ...
分类:其他好文   时间:2021-06-03 17:56:50    阅读次数:0
unity拖动UI代码
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; public class ImageDrap : MonoBehaviour, ...
分类:编程语言   时间:2021-06-02 20:56:54    阅读次数:0
C++ 新标准生成随机数
在c++新标准之前通常使用c的函数rand来生成随机数。 现在可以使用下面这种方式: #include <random> #include <ctime> //生成0到9之前的随机整数 static std::default_random_engine e(time(0));//time(0)返回特 ...
分类:编程语言   时间:2021-06-02 20:13:41    阅读次数:0
windows禁用启动设备API(c/cpp)
1 #include <time.h> 2 #include <stdio.h> 3 #include <errno.h> 4 #include <string.h> 5 #include <stdlib.h> 6 7 #include <winsock2.h> 8 #include <iphlpa ...
分类:Windows程序   时间:2021-06-02 20:00:15    阅读次数:0
Prometheus学习
1.Prometheus简介 Prometheus受启发于Google的Brogmon监控系统(相似的Kubernetes是从Google的Brog系统演变而来),从2012年开始由前Google工程师在Soundcloud以开源软件的形式进行研发,并且于2015年早期对外发布早期版本。2016年5 ...
分类:其他好文   时间:2021-06-02 19:52:46    阅读次数:0
python 装饰器 log
定义logger方法: import loggingimport osimport timeimport utilsdata=time.strftime("%Y-%m-%d-%H:%M:%S")logging.basicConfig(filename=utils.get_project_path() ...
分类:编程语言   时间:2021-06-02 19:50:48    阅读次数:0
Python函数装饰器高级用法
在了解了Python函数装饰器基础知识和闭包之后,开始正式学习函数装饰器。 典型的函数装饰器 以下示例定义了一个装饰器,输出函数的运行时间: 函数装饰器和闭包紧密结合,入参func代表被装饰函数,通过自由变量绑定后,调用函数并返回结果。 使用clock装饰器: import time from cl ...
分类:编程语言   时间:2021-06-02 19:37:36    阅读次数:0
【Unity游戏开发】初探Unity动画优化
一、简介 在最近的优化工作中,马三发现项目中的动画文件内存占比实在是太大了,峰值竟然有200多mb,很明显需要进行优化。经过一番网上查阅资料并结合自己实际操作以后,得到一些需心得体会,在这里马三记录一下并且分享给大家,希望对大家能有一些帮助。 二、动画压缩的注意事项 1.fbx中的动画无法压缩精度, ...
分类:编程语言   时间:2021-06-02 19:10:24    阅读次数:0
华为sdk报错 Failed to read meta data for the AppID,gradle拷贝配置文件
问题描述: unity2017,接入第三方支持华为的sdk,androidstudio生成aar给unity 错误日志: In getMetaDataAppId, Failed to read meta data for the AppID. 最终和技术沟通后得出结论,apk中AndroidMani ...
分类:移动开发   时间:2021-06-02 19:05:50    阅读次数:0
Python小游戏开发-贪食蛇捕蛙
每个程序员都有一个游戏梦,都想开发一款让别人爱不释手的游戏。游戏开发引擎很多像Unity 3D,cocos2d,白鹭(Egret),LayaBox,threeJs等等。一个偶然的机会,看到gitee上举办趣味魔改贪吃蛇游戏,出于程序员的自信心的驱使,加上爱折腾的心思便果断报名参加了。今天和大家一起看 ...
分类:编程语言   时间:2021-06-02 18:49:36    阅读次数:0
60599条   上一页 1 ... 11 12 13 14 15 ... 6060 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!