unity Gets GPS Information of Equipment
Unity uses GPS API s
In unity's official documents, there are only two API s related to device positioning (GPS longitude and latitude, horizontal accuracy, etc.) that I have found at present: Location Service and Location Info.
Let's start with a simple understanding:
Location Service is responsible for starting and closing loca ...
Posted by blankextacy on Sat, 30 Mar 2019 01:09:30 -0700
Unity calls the Gaud Map API to get location information (Android)
Unity calls the Gaud Map API to get location information (Android)
First in Android The terminal realizes the positioning function, and then packages it into JAR files to provide interface methods for Unity calls.
Unity3D (5.3.4)
Eclipse: Neon(4.6.0)
Unity provides an interface to interact with Android for reference Loose rain Blog ...
Posted by dcalladi on Fri, 29 Mar 2019 18:15:28 -0700
Unity5-ABSystem(3): AssetBundle Loading
Reprinted from: http://blog.csdn.net/lodypig/article/details/51872595
Unity Special Path
Resources
StreamingAssetsPath
PersistentDataPath
DataPath
Synchronous loading
Core function
Unable to load synchronously on Android platform
Example
Asynchronous loading
Core function
Example
WWW Asynchronous Loading
Resource loading ...
Posted by stefan63 on Fri, 29 Mar 2019 02:00:28 -0700
Frame Buffering of OpenGL Core Technology
The author introduces: Jiang Xue Wei Technological Partner of IT Company, Senior IT Lecturer, CSDN Community Expert, Invited Editor, Best-selling Book Author, National Patent Inventor; Published Book: Hand-to-Hand Teaching Framework 3D Game Engine. Electronic Industry Press and< Unity3D Detailed Explanation of Actual Core Technologies, Elect ...
Posted by miked2 on Tue, 26 Mar 2019 15:30:29 -0700
Use Mono.Cecil to inject code into Dll in Unity
Reprint my station: Original address
Through Mono.Cecil, we can inject code into existing dll by Emit to achieve advanced functions such as AOP.
Unity's code is automatically compiled into two Assemblies under Library Script Assemblies after modification, so I'll try to inject the code into them.
public class Test : MonoBehaviour{
void St ...
Posted by DavidT on Sat, 23 Mar 2019 17:39:52 -0700
Accurate playback duration of any animation clip in Unity3D by using Animator animation state machine
Unity3d 4 and previous versions of animation for animation play, can directly obtain its play duration. But animator is used to play animation in 5.x and later versions.
https://docs.unity3d.com/Manual/AnimationOverview.html
While Mecanim is recommended for use in most situations, Unity has retained its legacy animation system which existed ...
Posted by Headache on Fri, 08 Feb 2019 10:15:18 -0800
Pure C version LZMA compression algorithm library for Unity (windows iOS Android) (dll. so and. a)
Self-encapsulated LZMA interface library for unity, including dll of win platform, so dynamic library of Android and. a static library of iOS
LZMA is currently the highest compression ratio compression algorithm. Official versions of LZMA are available in many languages. unity can use C# directly, but it has been proved ...
Posted by Cannibal_Monkey on Tue, 05 Feb 2019 00:54:17 -0800
Some Ideas and Practice of C Ioc, DI, Unity and TDD
Object-Oriented Design (OOD) helps us develop high-performance, extensible and reusable programs. One of the important ideas of OOD is that it relies on the inversion principle (DIP).
Dependency Inversion Principle (DIP): A Principle of Software Architecture Design (Abstract Concept)
Inversion of Control (IoC): A way to reverse flows, depende ...
Posted by wempy on Tue, 08 Jan 2019 23:51:11 -0800
Yield & yield keyword of C# for Unity protocol
Yield & yield keyword of C# for Unity protocol
Unity Program:
This is to say that Unity opens the yield correlation in the IEnumerator process through Start Coroutine:
1.yield return 0,yield return null
Wait for the next frame to execute the following
2.yield return new WaitForSeconds(float secs)
Wait for the specified number of sec ...
Posted by Flames on Wed, 02 Jan 2019 22:33:10 -0800
Unity's Json parsing < 1 > -- Read Json files
This article was written by cartzhang. Please indicate the source for reprinting. All rights reserved. -
Links to articles: http://blog.csdn.net/cartzhang/article/details/50373558
Author: cartzhang
Unity's Json parsing < 1> - Read Json files
Because you need to make an external file configuration, considering XML and Json, and ...
Posted by AncientSage on Wed, 02 Jan 2019 14:09:09 -0800