Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sn14_dds
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
template admin
sn14_dds
Commits
498f083e
Commit
498f083e
authored
Sep 26, 2023
by
Tt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
131e02f3
Changes
14
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
1706 additions
and
599 deletions
+1706
-599
Voice_sn14_dds.ts
assets/sn14_dds/scene/Voice_sn14_dds.ts
+2
-2
sn14_dds.fire
assets/sn14_dds/scene/sn14_dds.fire
+1686
-594
sn14_dds.ts
assets/sn14_dds/scene/sn14_dds.ts
+15
-0
ani.meta
assets/sn14_dds/textures/sn14/ani.meta
+1
-1
right.meta
assets/sn14_dds/textures/sn14/ani/right.meta
+0
-0
right.mp3
assets/sn14_dds/textures/sn14/ani/right/right.mp3
+0
-0
right.mp3.meta
assets/sn14_dds/textures/sn14/ani/right/right.mp3.meta
+0
-0
right_ske.json
assets/sn14_dds/textures/sn14/ani/right/right_ske.json
+0
-0
right_ske.json.meta
assets/sn14_dds/textures/sn14/ani/right/right_ske.json.meta
+0
-0
right_tex.json
assets/sn14_dds/textures/sn14/ani/right/right_tex.json
+0
-0
right_tex.json.meta
assets/sn14_dds/textures/sn14/ani/right/right_tex.json.meta
+0
-0
right_tex.png
assets/sn14_dds/textures/sn14/ani/right/right_tex.png
+0
-0
right_tex.png.meta
assets/sn14_dds/textures/sn14/ani/right/right_tex.png.meta
+0
-0
form.component.html
form/src/app/form/form.component.html
+2
-2
No files found.
assets/sn14_dds/scene/Voice_sn14_dds.ts
View file @
498f083e
...
...
@@ -49,8 +49,8 @@ export default class ImgVoice extends cc.Component {
let
p1
=
this
.
img_npc_voice
.
getChildByName
(
'
p1
'
)
let
p2
=
this
.
img_npc_voice
.
getChildByName
(
'
p2
'
)
let
p3
=
this
.
img_npc_voice
.
getChildByName
(
'
p3
'
)
p1
.
active
=
tru
e
;
p1
.
active
=
fals
e
;
p2
.
active
=
false
;
p3
.
active
=
fals
e
;
p3
.
active
=
tru
e
;
}
}
\ No newline at end of file
assets/sn14_dds/scene/sn14_dds.fire
View file @
498f083e
This diff is collapsed.
Click to expand it.
assets/sn14_dds/scene/sn14_dds.ts
View file @
498f083e
...
...
@@ -161,7 +161,16 @@ export default class SceneComponent extends MyCocosSceneComponent {
// 如果泡泡没有到指定位置不允许点击
let
item
=
e
.
target
;
let
data
=
e
.
target
.
data
;
if
(
!
data
)
return
;
if
(
data
.
right
)
{
pg
.
hw
.
playLocalAudio
(
'
right2
'
);
this
.
scheduleOnce
(()
=>
{
pg
.
hw
.
playLocalAudio
(
'
right
'
)
},
0.2
)
let
right
=
pg
.
view
.
find
(
item
,
'
right
'
);
right
.
active
=
true
;
pg
.
view
.
playDBAnimation
(
right
,
'
newAnimation
'
,
1
);
this
.
rightList
.
push
(
data
);
this
.
updatePaoPaoRight
(
item
,
data
).
then
(()
=>
{
this
.
canTouch
=
true
;
...
...
@@ -227,6 +236,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
cc
.
Tween
.
stopAllByTarget
(
img_mouse
);
cc
.
tween
(
img_mouse
).
delay
(
1
/
3
).
to
(
1
/
3
,
{
y
:
defaultMouseY
}).
call
(()
=>
{
this
.
itemList
.
push
(
item
);
item
.
data
=
null
;
resolve
(
""
);
}).
start
();
})
...
...
@@ -266,6 +276,7 @@ export default class SceneComponent extends MyCocosSceneComponent {
cc
.
tween
(
img_mouse
).
delay
(
1
).
to
(
1
,
{
y
:
defaultMouseY
}).
call
(()
=>
{
this
.
itemList
.
push
(
item
);
this
.
dataList
.
push
(
data
);
item
.
data
=
null
;
resolve
(
""
);
}).
start
();
})
...
...
@@ -332,9 +343,13 @@ export default class SceneComponent extends MyCocosSceneComponent {
let
defaultMouseY
=
-
110
;
img_mouse
.
y
=
defaultMouseY
;
let
posX
=
[
-
100
,
0
,
100
];
img_mouse
.
x
=
posX
[
Math
.
floor
(
Math
.
random
()
*
posX
.
length
)]
pg
.
hw
.
playLocalAudio
(
'
create
'
)
cc
.
tween
(
img_mouse
).
to
(
1
,
{
y
:
0
}).
delay
(
1
).
to
(
1
,
{
y
:
defaultMouseY
}).
call
(()
=>
{
this
.
itemList
.
push
(
item
);
this
.
dataList
.
push
(
data
);
item
.
data
=
null
;
}).
start
();
}
...
...
assets/sn14_dds/textures/sn
05
/ani.meta
→
assets/sn14_dds/textures/sn
14
/ani.meta
View file @
498f083e
{
"ver": "1.1.2",
"uuid": "
06c329cf-7254-4422-a06b-a18bbf983e0c
",
"uuid": "
9e0234fc-cc6f-4ba0-96f2-f3a9ef8b9b30
",
"isBundle": false,
"bundleName": "",
"priority": 1,
...
...
assets/sn14_dds/textures/sn
05
/ani/right.meta
→
assets/sn14_dds/textures/sn
14
/ani/right.meta
View file @
498f083e
File moved
assets/sn14_dds/textures/sn
05
/ani/right/right.mp3
→
assets/sn14_dds/textures/sn
14
/ani/right/right.mp3
View file @
498f083e
File moved
assets/sn14_dds/textures/sn
05
/ani/right/right.mp3.meta
→
assets/sn14_dds/textures/sn
14
/ani/right/right.mp3.meta
View file @
498f083e
File moved
assets/sn14_dds/textures/sn
05
/ani/right/right_ske.json
→
assets/sn14_dds/textures/sn
14
/ani/right/right_ske.json
View file @
498f083e
File moved
assets/sn14_dds/textures/sn
05
/ani/right/right_ske.json.meta
→
assets/sn14_dds/textures/sn
14
/ani/right/right_ske.json.meta
View file @
498f083e
File moved
assets/sn14_dds/textures/sn
05
/ani/right/right_tex.json
→
assets/sn14_dds/textures/sn
14
/ani/right/right_tex.json
View file @
498f083e
File moved
assets/sn14_dds/textures/sn
05
/ani/right/right_tex.json.meta
→
assets/sn14_dds/textures/sn
14
/ani/right/right_tex.json.meta
View file @
498f083e
File moved
assets/sn14_dds/textures/sn
05
/ani/right/right_tex.png
→
assets/sn14_dds/textures/sn
14
/ani/right/right_tex.png
View file @
498f083e
File moved
assets/sn14_dds/textures/sn
05
/ani/right/right_tex.png.meta
→
assets/sn14_dds/textures/sn
14
/ani/right/right_tex.png.meta
View file @
498f083e
File moved
form/src/app/form/form.component.html
View file @
498f083e
...
...
@@ -176,8 +176,8 @@
<span>
{{ question.audioName}}
</span>
</div>
</div>
<span
style=
"font-size: 20px;"
>
倒计时:
</span>
<input
type=
"text"
nz-input
[(
ngModel
)]="
question
.
duration
"
(
blur
)="
save
()"
>
<
!-- <
span style="font-size: 20px;">倒计时: </span>
<input type="text" nz-input [(ngModel)]="question.duration" (blur)="save()">
-->
</div>
<!-- <div style="margin-top:20px">
...
...
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