Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
zeroing-editor
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
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
劳工
zeroing-editor
Commits
54d0f5fe
Commit
54d0f5fe
authored
Dec 05, 2019
by
rockyl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复遮罩嵌套问题
修改滚动方向
parent
9891a91a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
properties.js
src/utils/properties.js
+2
-2
BehaviorEditorDialog.vue
src/views/Editor/dialogs/BehaviorEditorDialog.vue
+2
-3
No files found.
src/utils/properties.js
View file @
54d0f5fe
...
...
@@ -47,13 +47,13 @@ export default {
title
:
'水平偏移'
,
type
:
'inputNumber'
,
value
:
undefined
,
desc
:
'相对于父元素中心点的水平偏移,0为正中心'
//
desc: '相对于父元素中心点的水平偏移,0为正中心'
},
verticalCenter
:
{
title
:
'垂直偏移'
,
type
:
'inputNumber'
,
value
:
undefined
,
desc
:
'相对于父元素中心点的垂直偏移,0为正中心'
//
desc: '相对于父元素中心点的垂直偏移,0为正中心'
},
rotation
:
{
title
:
'旋转'
,
...
...
src/views/Editor/dialogs/BehaviorEditorDialog.vue
View file @
54d0f5fe
...
...
@@ -47,9 +47,8 @@
},
onSave
(
isPreview
)
{
this
.
behavior_save
();
if
(
isPreview
){
this
.
$emit
(
'change'
,
isPreview
);
}
else
{
this
.
$emit
(
'change'
,
isPreview
);
if
(
!
isPreview
){
this
.
visible
=
false
;
}
},
...
...
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