Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
car
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
SparkProjects
car
Commits
63fcc854
Commit
63fcc854
authored
May 30, 2025
by
haiyoucuv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
init
parent
5a7f0149
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
10 additions
and
25 deletions
+10
-25
OverPanel.prefab
assets/Bundles/GamePanel/OverPanel.prefab
+1
-2
MainGame.scene
assets/Bundles/MainGame/MainGame.scene
+0
-5
platformManager.ts
assets/ScriptFrame/Frame/platformManager.ts
+1
-1
GlobalTypes.ts
assets/ScriptFrame/GlobalTypes.ts
+0
-0
GlobalTypes.ts.meta
assets/ScriptFrame/GlobalTypes.ts.meta
+0
-9
ReviewPanel.ts
assets/Scripts/Panels/ReviewPanel.ts
+1
-1
UnlockPanel.ts
assets/Scripts/Panels/UnlockPanel.ts
+1
-1
CarBoxComponent.ts
assets/Scripts/Scenes/MainGame/Components/CarBoxComponent.ts
+1
-1
GamePage.ts
assets/Scripts/Scenes/MainGame/GamePage.ts
+1
-1
CarCarColorsSysterm.ts
...s/Scripts/Scenes/MainGame/Systerms/CarCarColorsSysterm.ts
+2
-2
RoleCarColorsSysterm.ts
.../Scripts/Scenes/MainGame/Systerms/RoleCarColorsSysterm.ts
+2
-2
No files found.
assets/Bundles/GamePanel/OverPanel.prefab
View file @
63fcc854
...
...
@@ -1560,7 +1560,6 @@
"__type__": "c7e02w/TARKZZ6caY7iPmU7",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 1
},
...
...
@@ -1580,7 +1579,7 @@
"tip2": {
"__id__": 33
},
"_id": ""
"_id": "
83FUEpc05OFqpGht9Kul3T
"
},
{
"__type__": "cc.CompPrefabInfo",
...
...
assets/Bundles/MainGame/MainGame.scene
View file @
63fcc854
...
...
@@ -3883,7 +3883,6 @@
"__type__": "c4769Fo6wtAHYZ+JRKNdCg7",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 9
},
...
...
@@ -5293,7 +5292,6 @@
"__type__": "5efd2NxC6NFY4YJTZq+Jcph",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 114
},
...
...
@@ -5305,7 +5303,6 @@
"__type__": "6ce83/ihIlKlIuFH/Zz1DPN",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 114
},
...
...
@@ -6034,7 +6031,6 @@
"__type__": "4b322oEsdlPUIgzt0+wPWEr",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 9
},
...
...
@@ -6046,7 +6042,6 @@
"__type__": "a7185twPSND0JIFYdRcwA9d",
"_name": "",
"_objFlags": 0,
"__editorExtras__": {},
"node": {
"__id__": 9
},
...
...
assets/ScriptFrame/Frame/platformManager.ts
View file @
63fcc854
import
{
game
,
native
,
sys
}
from
"cc"
;
import
{
GlobalData
}
from
"../GlobalData"
;
import
{
EDITOR
,
PREVIEW
}
from
"cc/env"
;
import
{
CarColorsGlobalInstance
}
from
"../../CarColorsGame/Scrips/CarColorsGlobalInstance"
;
import
{
showToast
}
from
"db://assets/core/Module/UIFast"
;
import
{
CarColorsGlobalInstance
}
from
"db://assets/Scripts/Scenes/MainGame/CarColorsGlobalInstance"
;
export
class
PlatformManager
{
...
...
assets/ScriptFrame/GlobalTypes.ts
deleted
100644 → 0
View file @
5a7f0149
assets/ScriptFrame/GlobalTypes.ts.meta
deleted
100644 → 0
View file @
5a7f0149
{
"ver": "4.0.24",
"importer": "typescript",
"imported": true,
"uuid": "de0ff0a4-8b62-4974-8e2f-95aaed57f880",
"files": [],
"subMetas": {},
"userData": {}
}
assets/Scripts/Panels/ReviewPanel.ts
View file @
63fcc854
import
{
_decorator
,
Button
,
Label
,
Node
,
Sprite
,
SpriteFrame
}
from
'cc'
;
import
{
CarColorsGlobalInstance
}
from
'db://assets/CarColorsGame/Scrips/CarColorsGlobalInstance'
;
import
{
AudioClipName
,
AudioMgr
}
from
"db://assets/core/base/AudioMgr"
;
import
Panel
from
"db://assets/core/Module/Panel"
;
import
{
showPanel
,
showShareGuide
}
from
"db://assets/core/Module/UIFast"
;
import
{
MainGame
}
from
"db://assets/Scripts/Scenes/MainGame/MainGame"
;
import
gameStore
from
"db://assets/Scripts/store/gameStore"
;
import
{
_asyncThrottle
}
from
"db://assets/Scripts/Utils/Utils"
;
import
{
CarColorsGlobalInstance
}
from
"db://assets/Scripts/Scenes/MainGame/CarColorsGlobalInstance"
;
const
{
ccclass
,
property
}
=
_decorator
;
...
...
assets/Scripts/Panels/UnlockPanel.ts
View file @
63fcc854
import
{
_decorator
,
Button
,
Label
,
Node
,
Sprite
,
SpriteFrame
}
from
'cc'
;
import
{
CarColorsGlobalInstance
}
from
'db://assets/CarColorsGame/Scrips/CarColorsGlobalInstance'
;
import
{
AudioClipName
,
AudioMgr
}
from
"db://assets/core/base/AudioMgr"
;
import
Panel
from
"db://assets/core/Module/Panel"
;
import
{
showShareGuide
}
from
"db://assets/core/Module/UIFast"
;
import
{
MainGame
}
from
"db://assets/Scripts/Scenes/MainGame/MainGame"
;
import
{
CarColorsGlobalInstance
}
from
"db://assets/Scripts/Scenes/MainGame/CarColorsGlobalInstance"
;
const
{
ccclass
,
property
}
=
_decorator
;
...
...
assets/Scripts/Scenes/MainGame/Components/CarBoxComponent.ts
View file @
63fcc854
import
{
_decorator
,
CCInteger
,
Component
,
find
,
Node
,
tween
}
from
'cc'
;
import
{
Label3D
}
from
"db://assets/ScriptFrame/Frame/label-3d"
;
import
{
Label3D
}
from
'db://assets/ScriptFrame/Frame/label-3d'
;
const
{
ccclass
,
property
}
=
_decorator
;
...
...
assets/Scripts/Scenes/MainGame/GamePage.ts
View file @
63fcc854
...
...
@@ -18,12 +18,12 @@ import {
tween
,
Vec3
}
from
'cc'
;
import
{
CarCarColorsComponent
}
from
'./Components/CarCarColorsComponent'
;
import
{
PlatformManager
}
from
'../../../ScriptFrame/Frame/platformManager'
;
import
{
showPanel
,
showToast
}
from
"db://assets/core/Module/UIFast"
;
import
{
AudioClipName
,
AudioMgr
}
from
"db://assets/core/base/AudioMgr"
;
import
{
UnlockPanel
}
from
"db://assets/Scripts/Panels/UnlockPanel"
;
import
{
CarColorsGlobalInstance
}
from
"db://assets/Scripts/Scenes/MainGame/CarColorsGlobalInstance"
;
import
{
CarCarColorsComponent
}
from
"db://assets/Scripts/Scenes/MainGame/Components/CarCarColorsComponent"
;
const
{
ccclass
,
property
}
=
_decorator
;
...
...
assets/Scripts/Scenes/MainGame/Systerms/CarCarColorsSysterm.ts
View file @
63fcc854
import
{
_decorator
,
Component
,
find
,
geometry
,
Node
,
PhysicsSystem
}
from
'cc'
;
import
{
CarCarColorsComponent
}
from
'../Components/CarCarColorsComponent'
;
import
{
CarBoxComponent
}
from
'../Components/CarBoxComponent'
;
import
{
Label3D
}
from
'db://assets/ScriptFrame/Frame/label-3d'
;
import
{
CarCarColorsComponent
}
from
"db://assets/Scripts/Scenes/MainGame/Components/CarCarColorsComponent"
;
import
{
CarBoxComponent
}
from
"db://assets/Scripts/Scenes/MainGame/Components/CarBoxComponent"
;
import
{
CarColors
,
CarTypes
}
from
"db://assets/Scripts/Scenes/MainGame/CarColorsGlobalTypes"
;
import
{
CarColorsGlobalInstance
}
from
"db://assets/Scripts/Scenes/MainGame/CarColorsGlobalInstance"
;
...
...
assets/Scripts/Scenes/MainGame/Systerms/RoleCarColorsSysterm.ts
View file @
63fcc854
...
...
@@ -12,11 +12,11 @@ import {
randomRangeInt
,
Vec3
}
from
'cc'
;
import
{
RoleCarColorsComponent
}
from
'../Components/RoleCarColorsComponent'
;
import
{
CarCarColorsComponent
}
from
'../Components/CarCarColorsComponent'
;
import
{
AudioClipName
,
AudioMgr
}
from
"db://assets/core/base/AudioMgr"
;
import
{
showPanel
}
from
"db://assets/core/Module/UIFast"
;
import
{
ReviewPanel
}
from
"db://assets/Scripts/Panels/ReviewPanel"
;
import
{
RoleCarColorsComponent
}
from
"db://assets/Scripts/Scenes/MainGame/Components/RoleCarColorsComponent"
;
import
{
CarCarColorsComponent
}
from
"db://assets/Scripts/Scenes/MainGame/Components/CarCarColorsComponent"
;
import
{
CarColors
,
CarTypes
}
from
"db://assets/Scripts/Scenes/MainGame/CarColorsGlobalTypes"
;
import
{
CarColorsGlobalInstance
}
from
"db://assets/Scripts/Scenes/MainGame/CarColorsGlobalInstance"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment