Skip to content

Commit

Permalink
ライセンス追記。
Browse files Browse the repository at this point in the history
  • Loading branch information
Nanasu committed Oct 10, 2023
1 parent 20b28e9 commit 2755ede
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 1 deletion.
3 changes: 3 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Copyright (c) 2017 TK11235
Udonarium original
( https://github.com/TK11235/udonarium )

Copyright (c) 2019 Nanasu
Udonarium with Fly

Copyright (c) 2020 entyu
RangeComponent related code from Udonarium Lily
( https://github.com/entyu/udonarium_lily/ )
Expand Down
7 changes: 7 additions & 0 deletions src/app/component/range/range-render.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
Porting from Udonarium Lily
Copyright (c) 2020 entyu
MIT License
https://opensource.org/licenses/mit-license.php
*/
import { GridType } from '@udonarium/game-table';

type StrokeGridFunc = (w: number, h: number, gridSize: number) => GridPosition;
Expand Down
7 changes: 7 additions & 0 deletions src/app/component/range/range.component.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
Porting from Udonarium Lily
Copyright (c) 2020 entyu
MIT License
https://opensource.org/licenses/mit-license.php
*/
.is-grab {
cursor: -moz-grab;
cursor: -webkit-grab;
Expand Down
8 changes: 7 additions & 1 deletion src/app/component/range/range.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
<div class="component is-3d" [ngClass]="{'is-grab': !isLocked}" appMovable style="pointer-events: none"
<!--
Porting from Udonarium Lily
Copyright (c) 2020 entyu
MIT License
https://opensource.org/licenses/mit-license.php
--><div class="component is-3d" [ngClass]="{'is-grab': !isLocked}" appMovable style="pointer-events: none"
[movable.option]="movableOption" [movable.disable]="isLocked" (movable.ondragstart)="onMove()" (movable.ondragend)="onMoved()">
<div class="is-3d" [style.transform]="'translateZ(' + (altitude * gridSize) + 'px)'" [ngClass]="{fall: altitude == 0}">
<div class="is-3d" [style.clip-path]="gripPathText" style="position: absolute">
Expand Down
7 changes: 7 additions & 0 deletions src/app/component/range/range.component.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
Porting from Udonarium Lily
Copyright (c) 2020 entyu
MIT License
https://opensource.org/licenses/mit-license.php
*/
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';

import { RengeComponent } from './renge.component';
Expand Down
7 changes: 7 additions & 0 deletions src/app/component/range/range.component.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
Porting from Udonarium Lily
Copyright (c) 2020 entyu
MIT License
https://opensource.org/licenses/mit-license.php
*/
import {
AfterViewInit,
ChangeDetectionStrategy,
Expand Down

0 comments on commit 2755ede

Please sign in to comment.