voxelamming 0.3.1 → 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +26 -0
- data/README.md +3 -3
- data/index.html +33 -17
- data/lib/voxelamming/version.rb +1 -1
- data/lib/voxelamming.rb +85 -23
- data/voxelamming-0.3.1.gem +0 -0
- data/voxelamming-0.3.2.gem +0 -0
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a0cafac62266bced6de5a7489b57f65ce968a3758121e4179267192607cdcb7
|
4
|
+
data.tar.gz: ec9e456649b8a4d678ec328f7000050fb3c17ec47ecded609e47fb1e77016392
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 866ab0795c3626c9d6e830c4f0cf40c6c546b8e6f3e3c5c0636965af9e25c43742ef90d4e62f481d8b524a2f0d68e29d1581b90c32bcb06b7d15d65dc3db95fe
|
7
|
+
data.tar.gz: '0276639399de789d7506011c822dcea75ffab08e5c28a5c7a687c5cdc8aa272bdf208b64df4e65b531f929c7f7f40ad48aeae6627d21f9b3b1c8c81de3bc730d'
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
## VoxelammingGem Change log
|
2
|
+
|
3
|
+
### ver. 0.1.0
|
4
|
+
|
5
|
+
- first release
|
6
|
+
|
7
|
+
### ver. 0.1.1
|
8
|
+
|
9
|
+
- Map and ply file paths changed to be specified as relative paths.
|
10
|
+
- a few bug fixes
|
11
|
+
|
12
|
+
### ver. 0.1.2
|
13
|
+
|
14
|
+
- Changed so that the size of the map can be specified.
|
15
|
+
|
16
|
+
### ver. 0.2.0
|
17
|
+
|
18
|
+
- History can be saved.
|
19
|
+
|
20
|
+
### ver. 0.3.0
|
21
|
+
|
22
|
+
- Game mode implemented.
|
23
|
+
|
24
|
+
### ver. 0.3.2
|
25
|
+
|
26
|
+
- a few bug fixes
|
data/README.md
CHANGED
@@ -77,7 +77,7 @@ This code snippet demonstrates a simple example where a red voxel is created at
|
|
77
77
|
| `set_frame_repeats(repeats)` | Sets the number of frame repetitions (default: 10). | `repeats`: Number of repetitions (int) |
|
78
78
|
| Game Method Name | Description | Arguments |
|
79
79
|
| `set_game_screen(width, height, angle=90, r=1, g=1, b=0, alpha=0.5)` | Sets the game screen size. | `width`, `height`: screen size (float), `angle`: angle (float), `r`, `g`, `b`, `alpha`: color (float, 0-1) |
|
80
|
-
| `set_game_score(score)` | Sets the game score. | `score`: game score (int) |
|
80
|
+
| `set_game_score(score, x=0, y=0)` | Sets the game score. | `score`: game score (int), `x`, `y`: position (float) |
|
81
81
|
| `send_game_over()` | Triggers game over. | |
|
82
82
|
| `create_sprite(sprite_name, color_list, x, y, direction=90, scale=1, visible=True)` | Creates a sprite. | `sprite_name`: sprite name (string), `color_list`: dot color data (string), `x`, `y`: position (float), `direction`: angle (float), `scale`: scale (float), `visible`: visibility (boolean) |
|
83
83
|
| `move_sprite(sprite_name, x, y, direction=90, scale=1, visible=True)` | Moves a sprite. | `sprite_name`: sprite name (string), `x`, `y`: position (float), `direction`: angle (float), `scale`: scale (float), `visible`: visibility (boolean) |
|
@@ -90,7 +90,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
90
90
|
|
91
91
|
## Contributing
|
92
92
|
|
93
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/creativival/
|
93
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/creativival/voxelamming_ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/voxelamming_ruby/blob/master/CODE_OF_CONDUCT.md).
|
94
94
|
|
95
95
|
## License
|
96
96
|
|
@@ -98,4 +98,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
98
98
|
|
99
99
|
## Code of Conduct
|
100
100
|
|
101
|
-
Everyone interacting in the Voxelamming project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/
|
101
|
+
Everyone interacting in the Voxelamming project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/voxelamming_ruby/blob/master/CODE_OF_CONDUCT.md).
|
data/index.html
CHANGED
@@ -58,20 +58,24 @@
|
|
58
58
|
</style>
|
59
59
|
</head>
|
60
60
|
<body>
|
61
|
-
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
<h1>Voxelamming</h1>
|
62
66
|
<p>This Ruby package converts Python code into JSON format and sends it to the Voxelamming app using WebSockets, allowing users to create 3D voxel models by writing Ruby scripts.</p>
|
63
|
-
<h2
|
67
|
+
<h2>What's Voxelamming?</h2>
|
64
68
|
<p align="center"><img src="https://creativival.github.io/voxelamming/image/voxelamming_icon.png" alt="Voxelamming Logo" width="200"/></p>
|
65
69
|
<p>Voxelamming is an AR programming learning app. Even programming beginners can learn programming visually and enjoyably. Voxelamming supports iPhones and iPads with iOS 16 or later, and Apple Vision Pro.</p>
|
66
|
-
<h2
|
70
|
+
<h2>Resources</h2>
|
67
71
|
<ul>
|
68
|
-
<li><strong>Homepage:</strong>
|
69
|
-
<li><strong>Samples:</strong>
|
72
|
+
<li><strong>Homepage:</strong> https://creativival.github.io/voxelamming/index.en</li>
|
73
|
+
<li><strong>Samples:</strong> https://github.com/creativival/voxelamming/tree/main/sample/ruby</li>
|
70
74
|
</ul>
|
71
|
-
<h2
|
75
|
+
<h2>Installation</h2>
|
72
76
|
<pre><code class="bash">gem install voxelamming
|
73
77
|
</code></pre>
|
74
|
-
<h2
|
78
|
+
<h2>Usage</h2>
|
75
79
|
<pre><code class="ruby">require 'voxelamming'
|
76
80
|
|
77
81
|
room_name = '1000'
|
@@ -95,7 +99,7 @@ end
|
|
95
99
|
vox.send_data
|
96
100
|
</code></pre>
|
97
101
|
<p>This code snippet demonstrates a simple example where a red voxel is created at a specific location. You can use various functions provided by the <code>VoxelammingManager</code> class to build more complex models.</p>
|
98
|
-
<h4
|
102
|
+
<h4>Method description</h4>
|
99
103
|
<table>
|
100
104
|
<thead>
|
101
105
|
<tr><th> Method name </th><th> Description </th><th> Arguments </th></tr>
|
@@ -104,14 +108,14 @@ vox.send_data
|
|
104
108
|
<tr><td> <code>set_room_name(room_name)</code> </td><td> Sets the room name for communicating with the device. </td><td> <code>room_name</code>: Room name (string) </td></tr>
|
105
109
|
<tr><td> <code>set_box_size(size)</code> </td><td> Sets the size of the voxel (default: 1.0). </td><td> <code>size</code>: Size (float) </td></tr>
|
106
110
|
<tr><td> <code>set_build_interval(interval)</code> </td><td> Sets the placement interval of the voxels (default: 0.01 seconds). </td><td> <code>interval</code>: Interval (float) </td></tr>
|
107
|
-
<tr><td> <code>change_shape(shape)</code> </td><td> Changes the shape of the voxel. </td><td> <code>shape</code>: Shape (
|
111
|
+
<tr><td> <code>change_shape(shape)</code> </td><td> Changes the shape of the voxel. </td><td> <code>shape</code>: Shape ("box", "square", "plane") </td></tr>
|
108
112
|
<tr><td> <code>change_material(is_metallic, roughness)</code> </td><td> Changes the material of the voxel. </td><td> <code>is_metallic</code>: Whether to make it metallic (boolean), <code>roughness</code>: Roughness (float) </td></tr>
|
109
113
|
<tr><td> <code>create_box(x, y, z, r, g, b, alpha)</code> </td><td> Places a voxel. </td><td> <code>x</code>, <code>y</code>, <code>z</code>: Position (float), <code>r</code>, <code>g</code>, <code>b</code>, <code>alpha</code>: Color (float, 0-1) </td></tr>
|
110
114
|
<tr><td> <code>create_box(x, y, z, texture)</code> </td><td> Places a voxel with texture. </td><td> <code>x</code>, <code>y</code>, <code>z</code>: Position (float), <code>texture</code>: Texture name (string) </td></tr>
|
111
115
|
<tr><td> <code>remove_box(x, y, z)</code> </td><td> Removes a voxel. </td><td> <code>x</code>, <code>y</code>, <code>z</code>: Position (float) </td></tr>
|
112
116
|
<tr><td> <code>write_sentence(sentence, x, y, z, r, g, b, alpha)</code> </td><td> Draws a string with voxels. </td><td> <code>sentence</code>: String (string), <code>x</code>, <code>y</code>, <code>z</code>: Position (float), <code>r</code>, <code>g</code>, <code>b</code>, <code>alpha</code>: Color (float, 0-1) </td></tr>
|
113
|
-
<tr><td> <code>set_light(x, y, z, r, g, b, alpha, intensity, interval, light_type)</code> </td><td> Places a light. </td><td> <code>x</code>, <code>y</code>, <code>z</code>: Position (float), <code>r</code>, <code>g</code>, <code>b</code>, <code>alpha</code>: Color (float, 0-1), <code>intensity</code>: Intensity (float), <code>interval</code>: Blinking interval (float), <code>light_type</code>: Type of light (
|
114
|
-
<tr><td> <code>set_command(command)</code> </td><td> Executes a command. </td><td> <code>command</code>: Command (
|
117
|
+
<tr><td> <code>set_light(x, y, z, r, g, b, alpha, intensity, interval, light_type)</code> </td><td> Places a light. </td><td> <code>x</code>, <code>y</code>, <code>z</code>: Position (float), <code>r</code>, <code>g</code>, <code>b</code>, <code>alpha</code>: Color (float, 0-1), <code>intensity</code>: Intensity (float), <code>interval</code>: Blinking interval (float), <code>light_type</code>: Type of light ("point", "spot", "directional") </td></tr>
|
118
|
+
<tr><td> <code>set_command(command)</code> </td><td> Executes a command. </td><td> <code>command</code>: Command ("axis", "japaneseCastle", "float", "liteRender") </td></tr>
|
115
119
|
<tr><td> <code>draw_line(x1, y1, z1, x2, y2, z2, r, g, b, alpha)</code> </td><td> Draws a line between two points. </td><td> <code>x1</code>, <code>y1</code>, <code>z1</code>: Starting point (float), <code>x2</code>, <code>y2</code>, <code>z2</code>: Ending point (float), <code>r</code>, <code>g</code>, <code>b</code>, <code>alpha</code>: Color (float, 0-1) </td></tr>
|
116
120
|
<tr><td> <code>send_data(name)</code> </td><td> Sends voxel data to the device; if the name argument is set, the voxel data can be stored and reproduced as history. </td><td> </td></tr>
|
117
121
|
<tr><td> <code>clear_data()</code> </td><td> Initializes voxel data. </td><td> </td></tr>
|
@@ -124,16 +128,28 @@ vox.send_data
|
|
124
128
|
<tr><td> <code>frame_out()</code> </td><td> Ends recording a frame. </td><td> </td></tr>
|
125
129
|
<tr><td> <code>set_frame_fps(fps)</code> </td><td> Sets the frame rate (default: 2). </td><td> <code>fps</code>: Frame rate (int) </td></tr>
|
126
130
|
<tr><td> <code>set_frame_repeats(repeats)</code> </td><td> Sets the number of frame repetitions (default: 10). </td><td> <code>repeats</code>: Number of repetitions (int) </td></tr>
|
131
|
+
<tr><td> Game Method Name </td><td> Description </td><td> Arguments </td></tr>
|
132
|
+
<tr><td> <code>set_game_screen(width, height, angle=90, r=1, g=1, b=0, alpha=0.5)</code> </td><td> Sets the game screen size. </td><td> <code>width</code>, <code>height</code>: screen size (float), <code>angle</code>: angle (float), <code>r</code>, <code>g</code>, <code>b</code>, <code>alpha</code>: color (float, 0-1) </td></tr>
|
133
|
+
<tr><td> <code>set_game_score(score)</code> </td><td> Sets the game score. </td><td> <code>score</code>: game score (int) </td></tr>
|
134
|
+
<tr><td> <code>send_game_over()</code> </td><td> Triggers game over. </td><td> </td></tr>
|
135
|
+
<tr><td> <code>create_sprite(sprite_name, color_list, x, y, direction=90, scale=1, visible=True)</code> </td><td> Creates a sprite. </td><td> <code>sprite_name</code>: sprite name (string), <code>color_list</code>: dot color data (string), <code>x</code>, <code>y</code>: position (float), <code>direction</code>: angle (float), <code>scale</code>: scale (float), <code>visible</code>: visibility (boolean) </td></tr>
|
136
|
+
<tr><td> <code>move_sprite(sprite_name, x, y, direction=90, scale=1, visible=True)</code> </td><td> Moves a sprite. </td><td> <code>sprite_name</code>: sprite name (string), <code>x</code>, <code>y</code>: position (float), <code>direction</code>: angle (float), <code>scale</code>: scale (float), <code>visible</code>: visibility (boolean) </td></tr>
|
127
137
|
</tbody>
|
128
138
|
</table>
|
129
|
-
<h2
|
139
|
+
<h2>Development</h2>
|
130
140
|
<p>After checking out the repo, run <code>bin/setup</code> to install dependencies. Then, run <code>rake test</code> to run the tests. You can also run <code>bin/console</code> for an interactive prompt that will allow you to experiment.</p>
|
131
141
|
<p>To install this gem onto your local machine, run <code>bundle exec rake install</code>. To release a new version, update the version number in <code>version.rb</code>, and then run <code>bundle exec rake release</code>, which will create a git tag for the version, push git commits and the created tag, and push the <code>.gem</code> file to <a href="https://rubygems.org">rubygems.org</a>.</p>
|
132
|
-
<h2
|
133
|
-
<p>Bug reports and pull requests are welcome on GitHub at
|
134
|
-
<h2
|
142
|
+
<h2>Contributing</h2>
|
143
|
+
<p>Bug reports and pull requests are welcome on GitHub at https://github.com/creativival/voxelamming_ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the <a href="https://github.com/[USERNAME]/voxelamming_ruby/blob/master/CODE_OF_CONDUCT.md">code of conduct</a>.</p>
|
144
|
+
<h2>License</h2>
|
135
145
|
<p>The gem is available as open source under the terms of the <a href="https://opensource.org/licenses/MIT">MIT License</a>.</p>
|
136
|
-
<h2
|
137
|
-
<p>Everyone interacting in the Voxelamming project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the <a href="https://github.com/[USERNAME]/
|
146
|
+
<h2>Code of Conduct</h2>
|
147
|
+
<p>Everyone interacting in the Voxelamming project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the <a href="https://github.com/[USERNAME]/voxelamming_ruby/blob/master/CODE_OF_CONDUCT.md">code of conduct</a>.</p>
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
138
154
|
</body>
|
139
155
|
</html>
|
data/lib/voxelamming/version.rb
CHANGED
data/lib/voxelamming.rb
CHANGED
@@ -40,7 +40,7 @@ module Voxelamming
|
|
40
40
|
@model_moves = []
|
41
41
|
@sprites = []
|
42
42
|
@sprite_moves = []
|
43
|
-
@game_score =
|
43
|
+
@game_score = []
|
44
44
|
@game_screen = [] # width, height, angle=90, red=1, green=1, blue=1, alpha=0.5
|
45
45
|
@size = 1
|
46
46
|
@shape = 'box'
|
@@ -68,7 +68,7 @@ module Voxelamming
|
|
68
68
|
@sentences = []
|
69
69
|
@sprites = []
|
70
70
|
@sprite_moves = []
|
71
|
-
@game_score =
|
71
|
+
@game_score = []
|
72
72
|
@game_screen = [] # width, height, angle=90, red=1, green=1, blue=1, alpha=0.5
|
73
73
|
@lights = []
|
74
74
|
@commands = []
|
@@ -325,58 +325,120 @@ module Voxelamming
|
|
325
325
|
@game_screen = [width, height, angle, r, g, b, alpha]
|
326
326
|
end
|
327
327
|
|
328
|
-
def set_game_score(score)
|
329
|
-
|
328
|
+
def set_game_score(score, x = 0, y = 0)
|
329
|
+
score, x, y = [score, x, y].map(&:to_f)
|
330
|
+
@game_score = [score, x, y]
|
330
331
|
end
|
331
332
|
|
332
333
|
def send_game_over
|
333
334
|
@commands << 'gameOver'
|
334
335
|
end
|
335
336
|
|
337
|
+
def send_game_clear
|
338
|
+
@commands << 'gameClear'
|
339
|
+
end
|
340
|
+
|
336
341
|
def set_rotation_style(sprite_name, rotation_style = 'all around')
|
337
342
|
@rotation_styles[sprite_name] = rotation_style
|
338
343
|
end
|
339
344
|
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
+
# スプライトの作成と表示について、テンプレートとクローンの概念を導入する
|
346
|
+
# テンプレートはボクセルの集合で、標準サイズは8x8に設定する
|
347
|
+
# この概念により、スプライトの複数作成が可能となる(敵キャラや球など)
|
348
|
+
# スプライトは、ボクセラミングアプリ上で、テンプレートとして作成される(isEnable=falseにより表示されない)
|
349
|
+
# スプライトは、テンプレートのクローンとして画面上に表示される
|
350
|
+
# 送信ごとに、クローンはすべて削除されて、新しいクローンが作成される
|
351
|
+
# 上記の仕様により、テンプレートからスプライトを複数作成できる
|
352
|
+
|
353
|
+
# スプライトのテンプレートを作成(スプライトは配置されない)
|
354
|
+
def create_sprite_template(sprite_name, color_list)
|
355
|
+
@sprites << [sprite_name, color_list]
|
345
356
|
end
|
346
357
|
|
347
|
-
|
358
|
+
# スプライトのテンプレートを使って、複数のスプライトを表示する
|
359
|
+
def display_sprite_template(sprite_name, x, y, direction = 0, scale = 1)
|
348
360
|
# x, y, directionを丸める
|
349
361
|
x, y, direction = round_numbers([x, y, direction])
|
350
362
|
x, y, direction, scale = [x, y, direction, scale].map(&:to_s)
|
351
363
|
|
352
364
|
# rotation_styleを取得
|
353
|
-
if @rotation_styles
|
365
|
+
if @rotation_styles[sprite_name]
|
354
366
|
rotation_style = @rotation_styles[sprite_name]
|
355
367
|
|
356
368
|
# rotation_styleが変更された場合、新しいスプライトデータを配列に追加
|
357
|
-
|
358
|
-
|
359
|
-
direction_mod = direction.to_i % 360 # 常に0から359の範囲で処理(常に正の数になる)
|
369
|
+
if rotation_style == 'left-right'
|
370
|
+
direction_mod = direction.to_i % 360 # 常に0から359の範囲で処理(常に正の数になる)
|
360
371
|
if direction_mod > 90 && direction_mod < 270
|
361
|
-
direction =
|
372
|
+
direction = "-180" # -180は左右反転するようにボクセラミング側で実装されている
|
362
373
|
else
|
363
|
-
direction =
|
374
|
+
direction = "0"
|
364
375
|
end
|
365
|
-
|
366
|
-
direction =
|
376
|
+
elsif rotation_style == "don't rotate"
|
377
|
+
direction = "0"
|
367
378
|
else
|
368
379
|
direction = direction.to_s
|
369
380
|
end
|
370
381
|
else
|
371
|
-
# rotation_styleが設定されていない場合、そのままの値を使う
|
372
382
|
direction = direction.to_s
|
373
383
|
end
|
374
384
|
|
375
|
-
#
|
376
|
-
@sprite_moves.
|
385
|
+
# sprite_moves 配列から指定されたスプライト名の情報を検索
|
386
|
+
matching_sprites = @sprite_moves.select { |info| info[0] == sprite_name }
|
387
|
+
|
388
|
+
# スプライトの移動データを保存または更新
|
389
|
+
if matching_sprites.empty?
|
390
|
+
@sprite_moves.push([sprite_name, x, y, direction, scale])
|
391
|
+
else
|
392
|
+
index = @sprite_moves.index(matching_sprites[0])
|
393
|
+
@sprite_moves[index] += [x, y, direction, scale]
|
394
|
+
end
|
395
|
+
end
|
396
|
+
|
397
|
+
# 通常のスプライトの作成
|
398
|
+
def create_sprite(sprite_name, color_list, x = 0, y = 0, direction = 0, scale = 1, visible = true)
|
399
|
+
# スプライトのテンプレートデータを配列に追加
|
400
|
+
create_sprite_template(sprite_name, color_list)
|
401
|
+
|
402
|
+
# スプライトの移動データを配列に追加
|
403
|
+
if visible || !(x == 0 && y == 0 && direction == 0 && scale == 1)
|
404
|
+
x, y, direction = round_numbers([x, y, direction])
|
405
|
+
x, y, direction, scale = [x, y, direction, scale].map(&:to_s)
|
406
|
+
@sprite_moves.push([sprite_name, x, y, direction, scale])
|
407
|
+
end
|
408
|
+
end
|
409
|
+
|
410
|
+
# 通常のスプライトの移動
|
411
|
+
def move_sprite(sprite_name, x, y, direction = 0, scale = 1, visible = true)
|
412
|
+
if visible
|
413
|
+
display_sprite_template(sprite_name, x, y, direction, scale)
|
414
|
+
end
|
415
|
+
end
|
416
|
+
|
417
|
+
# スプライトクローンの移動
|
418
|
+
def move_sprite_clone(sprite_name, x, y, direction = 0, scale = 1)
|
419
|
+
display_sprite_template(sprite_name, x, y, direction, scale)
|
420
|
+
end
|
421
|
+
|
422
|
+
# ドット(弾)を表示する
|
423
|
+
def display_dot(x, y, direction = 0, color_id = 10, width = 1, height = 1)
|
424
|
+
template_name = "dot_#{color_id}_#{width}_#{height}"
|
425
|
+
display_sprite_template(template_name, x, y, direction, 1)
|
426
|
+
end
|
427
|
+
|
428
|
+
# テキストを表示する
|
429
|
+
def display_text(text, x, y, direction = 0, scale = 1, color_id = 7, is_vertical = false, align = '')
|
430
|
+
text_format = ''
|
431
|
+
align = align.downcase # 破壊的メソッドの代わりに非破壊的メソッドを使用
|
432
|
+
|
433
|
+
text_format += 't' if align.include?('top')
|
434
|
+
text_format += 'b' if align.include?('bottom')
|
435
|
+
text_format += 'l' if align.include?('left')
|
436
|
+
text_format += 'r' if align.include?('right')
|
437
|
+
|
438
|
+
text_format += is_vertical ? 'v' : 'h'
|
377
439
|
|
378
|
-
#
|
379
|
-
|
440
|
+
template_name = "text_#{text}_#{color_id}_#{text_format}"
|
441
|
+
display_sprite_template(template_name, x, y, direction, scale)
|
380
442
|
end
|
381
443
|
|
382
444
|
def send_data(name: '')
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: voxelamming
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- creativival
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faye-websocket
|
@@ -33,6 +33,7 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
+
- CHANGELOG.md
|
36
37
|
- CODE_OF_CONDUCT.md
|
37
38
|
- LICENSE.txt
|
38
39
|
- README.md
|
@@ -44,14 +45,16 @@ files:
|
|
44
45
|
- sig/voxelamming.rbs
|
45
46
|
- voxelamming-0.2.0.gem
|
46
47
|
- voxelamming-0.3.0.gem
|
48
|
+
- voxelamming-0.3.1.gem
|
49
|
+
- voxelamming-0.3.2.gem
|
47
50
|
homepage: https://creativival.github.io/voxelamming
|
48
51
|
licenses:
|
49
52
|
- MIT
|
50
53
|
metadata:
|
51
54
|
allowed_push_host: https://rubygems.org
|
52
55
|
homepage_uri: https://creativival.github.io/voxelamming
|
53
|
-
source_code_uri: https://github.com/creativival/
|
54
|
-
changelog_uri: https://creativival.github.io/
|
56
|
+
source_code_uri: https://github.com/creativival/voxelamming_ruby
|
57
|
+
changelog_uri: https://creativival.github.io/voxelamming_ruby/CHANGELOG.md
|
55
58
|
post_install_message:
|
56
59
|
rdoc_options: []
|
57
60
|
require_paths:
|