Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
zeroing-engine
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-engine
Commits
47e288c2
Commit
47e288c2
authored
May 26, 2020
by
rockyl
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/designtime' into designtime
parents
8c6dfbc8
d316d012
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
4 deletions
+17
-4
engine.js
debug/engine.js
+12
-0
engine.js.map
debug/engine.js.map
+5
-1
Loader.ts
src/2d/loader/Loader.ts
+0
-2
Image.ts
src/zeroing/game-warpper/nodes/Image.ts
+0
-1
No files found.
debug/engine.js
View file @
47e288c2
...
...
@@ -15589,6 +15589,12 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
};
TextField
.
prototype
.
_calculateBounds
=
function
()
{
var
_a
=
this
.
_localBoundsSelf
,
width
=
_a
.
width
,
height
=
_a
.
height
;
<<<<<<<
HEAD
var
matrix
=
this
.
transform
.
worldMatrix
;
this
.
_bounds
.
x
=
matrix
.
tx
;
this
.
_bounds
.
y
=
matrix
.
ty
;
=======
>>>>>>>
94674
e57a616ffee254265568109dfb6e9d69533
this
.
_bounds
.
width
=
width
;
this
.
_bounds
.
height
=
height
;
};
...
...
@@ -19615,6 +19621,12 @@ var tslib = {__extends: __extends,__assign: __assign,__rest: __rest,__decorate:
if
(
url
.
indexOf
(
'://'
)
>=
0
)
{
if
(
url
.
indexOf
(
assetScheme
)
===
0
)
{
url
=
url
.
replace
(
assetScheme
,
''
);
<<<<<<<
HEAD
if
(
exports
.
editorMode
)
{
url
=
exports
.
assetResolver
(
url
);
}
=======
>>>>>>>
94674
e57a616ffee254265568109dfb6e9d69533
}
}
else
{
...
...
debug/engine.js.map
View file @
47e288c2
This diff is collapsed.
Click to expand it.
src/2d/loader/Loader.ts
View file @
47e288c2
...
...
@@ -117,11 +117,9 @@ export class Loader extends EventDispatcher {
//console.log("覆盖原先数据:" + name);
}
this
.
caches
[
name
]
=
data
;
console
.
log
(
this
.
caches
)
}
get
(
name
:
string
)
{
console
.
log
(
this
.
caches
)
return
this
.
caches
[
name
];
}
}
...
...
src/zeroing/game-warpper/nodes/Image.ts
View file @
47e288c2
...
...
@@ -48,7 +48,6 @@ export class Image extends Sprite implements IUIComponent {
}*/
if
(
editorMode
)
{
console
.
log
(
"assetResolver(url)"
,
assetResolver
(
url
))
url
=
assetResolver
(
url
);
}
}
...
...
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