摘要:
CentOS 7中安装 在CentOS中可以直接使用Yum进行安装,除了安装ImageMagick,还要安装它的两个依赖ImageMagick-devel和ImageMagick-perl。 yum install -y ImageMagick ImageMagick-devel ImageMagi 阅读全文
摘要:
原文 https://blog.csdn.net/qq_43505432/article/details/117304453 目录一、Unity安装时遇到的报错二、导入AAR打包报错(Gradle系列报错)1、报错 Gradle Error: Colliding Attributes(1)清单文件A 阅读全文
摘要:
Byte: 1 byte(s) scope:[0 - 255] SByte: 1 byte(s) scope:[-128 - 127] Int16: 2 byte(s) scope:[-32768 - 32767] UInt16: 2 byte(s) scope:[0 - 65535] Int32: 阅读全文
摘要:
Lua 版本-- 返回0或1 function GetBit(value, index) return value >> index & 1 end -- bitValue取值 0或1,返回存储后数值 function SetBit(value, index, bitValue) local val 阅读全文
摘要:
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEditor; using UnityEngine.SceneManagement; using System; using System.IO; using System.Runtime.InteropService... 阅读全文
摘要:
package com.game.utils; import android.app.Activity; import android.content.ClipData; import android.content.ClipDescription; import android.content.ClipboardManager; import android.content.Context; ... 阅读全文
摘要:
layerMask参数: Raycast (ray : Ray, out hitInfo : RaycastHit, distance : float = Mathf.Infinity, layerMask : int = kDefaultRaycastLayers) int layer = Lay 阅读全文
摘要:
在UIWidget 中添加以下函数。获得的坐标系是以右上角为原点坐标,x轴向左,一轴向下。 public Vector2 GetTouchPoint() { Vector3 p0 = cachedTransform.worldToLocalMatrix.MultiplyPoint(UICamera. 阅读全文
摘要:
写在前面 这一篇是在Digital Tutors的一个系列教程的基础上总结扩展而得的~Digital Tutors是一个非常棒的教程网站,包含了多媒体领域很多方面的资料,非常酷!除此之外,还参考了Unity Cookie中的一个教程。还有很多其他参考在下面的链接中。 这篇文章旨在简要地说明一下常见的 阅读全文