自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

AnYuanLzh

All things are difficulty before they are easy!

  • 博客(9)
  • 资源 (16)
  • 收藏
  • 关注

原创 python_subprocess_xcode

用python3下的subprocess库来操纵xcode命令行的演示:# 清理 - cleanimport subprocesscmd = 'xcodebuild clean -project /Users/sdf/Documents/lzh/projects/xcode/commandline/Unity-iPhone.xcodeproj -scheme Unity-iPhone'cmdp

2017-12-20 15:23:51 335

原创 python_requests_pgyer

用python3下的requests库来将一安装包上传到蒲公英上:# python自动上传安装包到蒲公英测试import requestsimport sysimport webbrowserdef uploadFile(): pak_path = r'F:\projects\unity2017\20171207_CommandLine\201712015.apk' uplo

2017-12-15 13:16:25 597

原创 python_smtlib_email

基于python3+smtlib库,发送emailimport smtplibfrom email.mime.text import MIMETextfrom email.header import Header# 第三方 SMTP 服务mail_host="smtp.exmail.qq.com" #设置服务器mail_user="[email protected]" #用户名mai

2017-12-15 13:13:04 1139

原创 python_subprocess_git

用python3下的subprocess库来操纵一些git命令行的演示:# 一些相关的git的原生命令# 新建分支dev# git branch dev# # 切换到master分支# git checkout master# # git 强制放弃本地修改(新增、删除文件):# git checkout . && git clean -df#

2017-12-14 17:51:24 1096

原创 python_subprocess

用python3下的subprocess库来操纵命令行的演示:# Q: 实时拿到命令中的输出# A: 用ping命令来测试,用unity来测试没看到任务结果import subprocessp = subprocess.Popen(['ping', 'www.baidu.com'], stdin = subprocess.PIPE, stdout = subprocess.PIPE,)whi

2017-12-14 15:56:40 315

原创 python_subprocess_unity

用python3下的subprocess库来操纵unity命令行的演示:# Q: 用python + subprocess调用unity命令# A: # 方式一:import subprocesscmd = r'Unity.exe -batchmode -projectPath F:\projects\unity2017\20171207_CommandLine -executeMethod

2017-12-14 15:51:18 451

原创 python_gitpython_git

用python2下的gitpython库来操纵git命令行的演示:# 基本语句from git import Repo # 导入repo模块repoPath = r'F:\workprojects\u3d_git\Majiang3D' # 本地git库路径repo = Repo(repoPath) # 获取一个库print(repo.branches) # 获取所有的分支p...

2017-12-14 15:45:22 3993 1

原创 python_subprocess_svn

用python下的subprocess库来操纵svn命令行的演示:# Q: svn 的还原# A: 将本地的所有的修改(没有提交),返原import subprocesscmd = r'svn revert --depth=infinity F:\workprojects\u3d_git\Majiang3D\client\Assets\Res\assetbundle'cmdpath = No

2017-12-14 15:42:32 744

原创 vscode中的正则搜索与替换演示

示例(num.\w+()) print($1) 将所有的方法调用都套上print()

2017-12-14 15:38:33 26241 5

mipai.unitypackage

unity实现的一个2d的咪牌效果,对应的博文:https://blog.csdn.net/AnYuanLzh/article/details/93969663

2019-06-28

UniWebView安卓安装包

对应的博文:https://mp.csdn.net/mdeditor/80526378。

2018-05-31

Unity下实现断点续传的下载_demo

Unity下实现断点续传的下载方式 博客:http://blog.csdn.net/AnYuanLzh/article/details/70848442

2017-04-27

Unity for iOS 调用UIDatePicker

在这里简单,实现一个 Unity for iOS UIDatePicker来输入日期日间的功能。主要有两个方面:1、unity 与 ios的交互、ios下的objective-c的相关api。具体的看代码吧. 对应的博文:http://blog.csdn.net/AnYuanLzh/article/details/50771498

2016-03-01

Unity for iOS 打开相册、相机及保存图片到相册的demo

在这里简单,实现一个 Unity for iOS 打开相册、相机及保存图片到相册的功能。主要有两个方面:1、unity 与 ios的交互、ios下的objective-c的相关api。 对应的博文:http://blog.csdn.net/AnYuanLzh/article/details/50748928

2016-02-26

vuforia-unity-5-0-10.unitypackage

vuforia-unity-5-0-10.unitypackage vuforia for unity. 官网下载实在在慢。

2016-01-04

PureMVC for Unity3d Demo

这是一个对照 PureMVC C# 版官方demo,改写的Unity3d版demo.因为是用来练手的所有所简化. 参考博文:http://blog.csdn.net/AnYuanLzh/article/details/50353007

2015-12-18

Unity Splash Image 与 Launch场景的背景图无缝衔接

Unity Splash Image 与 Launch场景的背景图无缝衔接,不会任何的抖动。http://blog.csdn.net/AnYuanLzh/article/details/50176435

2015-12-04

EasyTouch与UGUI的结合

EasyTouch与UGUI的结合,单指转动、双指移动、双指放缩。 配套博文:http://blog.csdn.net/AnYuanLzh/article/details/50145151

2015-12-02

U3D之WebCamTexture实现前后相机的拍照功能

配套博文:http://blog.csdn.net/AnYuanLzh/article/details/50009963

2015-11-24

ugui滑动翻页

ugui滑动翻页。 参考博文:http://blog.csdn.net/AnYuanLzh/article/details/49785471

2015-11-11

copy streamingassets 2 persistentassets.

演示如何将streamingassets路径下的资源,拷贝到persistentassets路径下。 对应的博文:http://blog.csdn.net/anyuanlzh/article/details/48491397

2015-09-16

NGUI UIScrollView 性能优化

配套博文:http://blog.csdn.net/anyuanlzh/article/details/40621889

2014-10-30

NGUI版的虚拟摇杆

配套的博文:http://blog.csdn.net/anyuanlzh/article/details/40107577

2014-10-16

Unity触控测试项目

这是个Unity小项目,关于如何用unity处理在移动设备上的触控操作。这只是对触摸事件的响响应,没有复杂的触摸手势什么的。 对应的博文:Unity 之 移动设备的触控操作。http://blog.csdn.net/anyuanlzh/article/details/18367941。

2014-01-18

Unity3D内置Shader源码与详解

包含Unity3D内置Shader源码, 以及这些源码的详解! 有兴趣是可以参考学习一下! 资源来网络收集,放出来与大家分享一下,不要分!

2013-12-24

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除