Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
Unity Webview
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FrameIT
Unity Webview
Compare revisions
787188c205056d486911340e7d558fb23f079b79 to c2e3bddacb9422ef55838c1e7136c385909ecd8e
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
FrameIT/unity-webview
Select target project
No results found
c2e3bddacb9422ef55838c1e7136c385909ecd8e
Select Git revision
Branches
main
1 result
Swap
Target
FrameIT/unity-webview
Select target project
FrameIT/unity-webview
1 result
787188c205056d486911340e7d558fb23f079b79
Select Git revision
Branches
main
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
remove more noisy debug prints
· c2e3bdda
Björn Eßwein
authored
7 months ago
Verified
c2e3bdda
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Runtime/WebViewComponent.cs
+2
-2
2 additions, 2 deletions
Runtime/WebViewComponent.cs
with
2 additions
and
2 deletions
Runtime/WebViewComponent.cs
View file @
c2e3bdda
...
...
@@ -140,7 +140,7 @@ namespace bessw.Unity.WebView
// On drag over
if
(
eventData
.
dragging
)
{
Debug
.
LogWarning
(
$"OnDragOver:
{
eventData
.
position
}
"
);
//
Debug.LogWarning($"OnDragOver: {eventData.position}");
createDragEvent
(
DragEventType
.
dragOver
,
eventData
);
}
}
...
...
@@ -202,7 +202,7 @@ namespace bessw.Unity.WebView
x
=
position
.
x
,
y
=
position
.
y
,
};
Debug
.
LogWarning
(
$"DragEvent:
{
dragEvent
.
type
}
,
{
eventData
.
position
}
, '
{
dragEvent
.
data
.
items
[
0
].
data
}
'"
);
//
Debug.LogWarning($"DragEvent: {dragEvent.type}, {eventData.position}, '{dragEvent.data.items[0].data}'");
// send the DragEvent as drag event to the browser
tab
.
OnDragNDrop
(
dragEvent
);
}
...
...
This diff is collapsed.
Click to expand it.