Add frontmatter for post

This commit is contained in:
Corbin Crutchley
2019-12-28 23:39:52 -08:00
parent f7664d39c6
commit 990d464b76

View File

@@ -1,6 +1,14 @@
---
{
title: "Integrating Native Android Code in Unity",
description: 'Have you ever wanted to run native Java and Kotlin code from your mobile game written in Unity? Well you can! This article outlines how to set that up!',
published: '2020-01-04T05:12:03.284Z',
authors: ['crutchcorn'],
tags: ['unity', 'android', 'c#', 'java', 'kotlin'],
attached: [],
license: 'cc-by-nc-sa-4'
}
---
Working on mobile games with Unity, you may come across some instances where you'll want to run native code. Whether it be to access specific sensors, run code in the background, or other closer-to-hardware mobile-specific actions, knowing how to call native code from within your Unity's C# environment can be a great boon to your developmental efforts.