Commit 4f8d0ec2e46593523b12c2267736a2d0f7d5f3d9

Authored by YangYi
1 parent 7824b87d

基础内容提交

{
"name": "com.kiwifungames.package.demo",
"rootNamespace": "",
"references": [],
"includePlatforms": [],
"excludePlatforms": [],
"allowUnsafeCode": false,
"overrideReferences": false,
"precompiledReferences": [],
"autoReferenced": true,
"defineConstraints": [],
"versionDefines": [],
"noEngineReferences": false
}
\ No newline at end of file
... ...
using System;
using UnityEngine.UI;
namespace Kiwifungames.UnityPackageDemo
{
public class LevelDemo : MonoBehaviour
{
public const int VERSION_CODE = 1;
[SerializeField]
private Text m_TextVersion;
void Start()
{
if (m_TextVersion != null)
{
m_TextVersion.text = $"VersionCode: {VERSION_CODE}";
}
}
void Update()
{
}
}
}
\ No newline at end of file
... ...
{
"name": "com.kiwifungames.unitypackage.demo",
"displayName": "UnityPackageDemo",
"version": "1.0.0",
"description": "Demo Package",
"author": {
"name": "Young",
"email": "young@kiwifungames.com",
"url": "http://mygitlab.daimaodiary.com/dashboard/projects"
}
}
\ No newline at end of file
... ...