Unity Unity: How to change the default or entry animation for an animator When creating a new animation for a game object, by default in Unity, the first animation your created is the entry animation for a game object. Suppose we have two animation for a game object with two animations: cucumber_idle and cucumber_walk. If you want to update or modify
Android Android: Are you familiar with onCreate(), onStart() onResume() and ... running order of onCreate, onStart, onResume and onDestory .... in Android using Kotlin
Unity Unity: Real example shows the difference of three Canvas UI Scale Modes Unity: Real example shows the difference of three Canvas UI Scale Modes, Constant Pixel Size, Scale With Screen Size and Constant Physical Size
iOS 中华古诗词 中华古诗词是中华最源远流长的精神文化传承之一,好的诗词给人以精神上美的提升, 本app精选了1000首诗词歌赋: 从先秦 “知人者智,自知者明“ 到清朝 ”吹到一片秋香,清辉了如雪“ 从李白 “天生我材必有用,千金散尽还复来” 到 杜甫 ”感时花溅泪,恨别鸟惊心“ 从白居易 ”绿蚁新醅酒,红泥小火炉“ 到 王昌龄 ”但使龙城飞将在,不教胡马度阴山“ 本app以小部件的方式,把您最喜欢的诗词放在桌面,您可以根据自己喜欢的样式来调整字体类型,大小等等
Unity Unity: Should I choose Kinematic, Static or Dynamic for Rigidbody 2D body type? When dealing with Rigidbody 2D, there are three key body types which determines how a game object move and react to collision. This post is the complete guide on how and when to use them Static * No REAL Rigidbody component attached to them, so physics engine does not consider them
Other Setup Visual Studio Code for Unity on Mac 2020 (Updated in 2021) There are tons of articles online tells us it is 2020, we should use the Visual Studio code, which is a good coding tool (or IDE) with numerous extensions. This article is the complete and most easy guide on how to config your Visual Studio Code. Things I am using:
Other Unity: Are you familiar with Awake(), OnEnable(), Start(), Update(),FixedUpdate() and OnDestroy() Unity: Are you familiar with Awake(), OnEnable(), Start(), Update(),FixedUpdate() and OnDestory()
Mobile [Tips] iPhone/iPad: How to get Free apps through TestFlight TestFlight is an beta testing app/service offered by Apple, which you can download apps from the app developer and use it for FREE. Only 2 steps are needed: Step 1: Download TestFlight from App Store on your iPhone/iPad. This will only be needed once. If you already have
Android How to find your Play Store ID For most Android phone users, Play Store is already installed on the phone already. It is a portal for you to download and install new apps with just few taps. The icon of the Play Store: (Shape may vary depends on the Phone model) Only two steps, you can find
Projects AC Pocket Guide updated I am the OP on the OZBargin post (link) and also the developer of the AC Pocket Guide (iOS link). Today (11 Apr 2020) I want to say sorry to you. As for some reason, Google seems have incredible longer review time than usual for new app on the Google
Projects Wordo - Spell to score I heard you are good at words and spelling, what about Wordo? A tiny game of finding words with few letters, share your score with your families and friends. Be the top 1. This is an English words spelling game in your pocket, it is also a sense of accomplishment
Projects Australian Driving Test for all States 2019 Australian Driving Test 2019 version. Official data for all States collected from their official websites, including: * New South Wales (NSW), Roads and Maritime Services (TMR) * Victoria (VIC), VicRoads * Queensland (QLD), Department of Transport and Main Roads (TMR) * Western Australia (WA) * South Australia (SA), Mylicense * Tasmania (TAS), State Growth * Australian Capital
Projects How did I pass my Australian Citizenship Test within 7 days Australia Citizenship Test in 2019, which will answer almost every question that you need before you attend the test. Available on Google Play app
Projects [iOS] Trivia ONE Play with more than 3000 quizzes and questions, challenge yourself with all kinds of topics, General knowledges, history, vehicles, music, movies, sports, TV, geography, science, nature, and much more.
iOS Export IPA file from Xcode and install on your mobile Generate ipa from swift xcode, install ipa to mobile device
Python Python package importing explained Python is a powerful and elegant language which makes people obsessed into it (such as me). However, many of the python users are still confused by two question: 1. package importing 2. encoding and decoding This article will explained the package importing with some simple examples. There are two type
Unity OnTriggerEnter2D v.s. OnCollisionEnter2D OnCollisionEnter2D: Some collision really happened, means two objects collide with each other. OnTriggerEnter2D: Collision not really happened when you set up Is Trigger is true. For example, if two objects, one with Is Trigger off (Object A), the other with Is Trigger on (Object B). So Object A can pass
Barcode and QR code Reader The most fastest & easy-to-use Barcode/QR Reader - download now for FREE! FEATURES * Code Scanner - scans QR codes & barcodes * Support more than 10 formats, includes ISBN, product barcode, QR Code, Wi-Fi barcode, business card, Web URL, wechat, facebook, twitter, event barcode, Passport * Save scanned QR codes or
Mobile Load local html resource on Android using webView Local html and sources are necessary when you try to show an error page dealing with situations such as 404, 500 and etc errors happened on remote server. And here is how: First, create a new class named MyWebViewClient: package apeapp.webviewclient.testwebviewclient; import android.os.Build; import android.util.
Mobile Dive into Android Application Lifecycle – A simple tutorial for iOS developers Introduction Due to some requirements from work, I was asked to immigrate current iOS product into Android. If you are like me, who are mainly working on iOS, but want to put hands on Android too, this is a post can help you to understand the fundamental concept on Android.