Skip to content

Commit eceb59c

Browse files
authored
Merge pull request #10 from openpatch/extension-camera
Extension camera
2 parents e1097af + 2cb1ba2 commit eceb59c

File tree

140 files changed

+1269
-468
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+1269
-468
lines changed

.env

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,16 @@ function s4j_build() {
2626
}
2727
alias s4jb="s4j_build"
2828

29+
function s4j_diff_docs() {
30+
nvim -dR <(cd $(s4j_workdir)/docs/de; find . | sort) <(cd $(s4j_workdir)/docs/en; find . | sort)
31+
}
32+
alias s4jdd="s4j_diff_docs"
33+
34+
function s4j_lint_docs() {
35+
find docs -type f -print | xargs grep "construction"
36+
}
37+
alias s4jld="s4j_lint_docs"
38+
2939
function s4j_compile() {
3040
rm -rf $(s4j_workdir)/bin
3141

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"template": "construction",
3+
"class": "Camera",
4+
"name": "changeX"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"template": "construction",
3+
"class": "Camera",
4+
"name": "changeY"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"template": "construction",
3+
"class": "Camera",
4+
"name": "changeZoom"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"template": "construction",
3+
"class": "Camera",
4+
"name": "getPosition"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"template": "construction",
3+
"class": "Camera",
4+
"name": "getX"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"template": "construction",
3+
"class": "Camera",
4+
"name": "getY"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"template": "construction",
3+
"class": "Camera",
4+
"name": "getZoom"
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"template": "construction",
3+
"class": "Camera",
4+
"name": "resetZoom"
5+
}

0 commit comments

Comments
 (0)