Toggle navigation
This project
Loading...
Sign in
Young
/
UnityPackageDemo
·
Commits
Go to a project
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
4f8d0ec2e46593523b12c2267736a2d0f7d5f3d9
Authored by
YangYi
2024-11-25 20:13:53 +0800
1 parent
7824b87d
build: skipped
基础内容提交
Changes
3
Builds
0
Inline
Side-by-side
Showing
3 changed files
with
50 additions
and
0 deletions
Runtime/Demo.asmdef
Runtime/Demo.cs
package.json
Runtime/Demo.asmdef
0 → 100644
View file @
4f8d0ec
{
"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
...
...
Runtime/Demo.cs
0 → 100644
View file @
4f8d0ec
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
...
...
package.json
0 → 100644
View file @
4f8d0ec
{
"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
...
...
Please
register
or
login
to post a comment