 # Repository <a href="https://github.com/premasagar/pablo">PabloJs</a> <a href="https://github.com/onepicesteem">My Github Profile</a> <a href="https://github.com/onepicesteem/Tank-Fire-Game-Using-HTML-SVG-Part-3">Tank Fire Game Using HTML SVG (Part-3)</a> # What Will I Learn? - You will learn how to create a variable element array. - You will learn `circle()` method in `PabloJs`. - You will learn how to use `setInterval()` function in `Javascript`. - You will learn `Math.random()` and `Math.floor()` methods in `Javascript`. - You will learn `object` creation process. # Requirements <a href="https://github.com/Microsoft/vscode">Visual Studio Code in GitHub</a> # Difficulty - Basic # Tutorial Contents In my previous articles I gave the tank the power to move and shoot. The tank is able to move with the arrow keys of the keyboard and with the space key it can shoot according to direction. In this article we can place the targets that the tank will hit. I will use the `circle()` method in pablojs when I'm setting to targets. I'll place more than one ball on the playing field, so I'll keep all the balls in an `array` and access all the balls with the `for` loop. I will make the shapes of the balls different from each other and adjust their speed according to their shape. I place each ball inside an `object`. I'll randomly set up the balls' locations and dimensions on the playing field. I will use the `Math.random()` function for this operation. I will use the `setInterval()` method, because the balls will be in continuous motion. At the end of this article, you will learn how to create objects that are independent from each other in game programming and how to move objects. Let’s start. For a better understanding of the article, I divide the article into three parts: - Creating Balls - Moving the Balls - Set Limits For a Playground ### Creating Balls I've mentioned that I will place the properties of the balls in one object. This object will hold the properties of a single ball, and after creating a certain number of these objects and throwing them into the array, we will have more than one ball. To create a ball, we need the `x` and `y` coordinates in the playing field and the `radius` of the circle. We can find the speed by looking at the radius of the circle, but let us store the `speed` of the ball within our object for convenience. I will make the ball move in a cross way so I have to keep the `direction` property within this object. After creating our balls, if the tank's bullet hits the ball, we have to remove the ball from the playground. If we do not store the whole circle in a variable after creating the ball, we cannot delete it when the bullet is hit. Let's create our balls in the light of this information. First create the necessary variables to keep the properties of the ball. ``` //Ball's features var ballX; var ballY; var ballR; var ballSpeed; var ballDirection; var ballObj; ``` <br> I need to keep the number of balls on the screen in a variable. I will initially draw `4 balls` in order to be better understood. ``` //Number of balls var ballNumber=4; var ballArray=new Array(); ``` <br> With the `new Array()` method we can create a variable array of elements. With pablojs we use the `circle()` method to create a circle for the screen. I'm using multiple circle () methods to create one function. ``` function ballBuilder(x,y,r){ return svg.circle({ cx: x, cy: y, r: r, fill: '#5758BB' }); } ``` <br> With the `ballBuilder()` function we can draw a known circle of `x` and `y` center points and `radius`. Now I can draw the ball as number of `ballNumber`. I have to create x and y points randomly so that the ball can be formed at any point. I need to set the random function according to the size of the screen. When setting for point y, I should take between `0 and 700` points and when setting to the x point between `0 and 1100` points. Of course, because these points are central points, it would make more sense to determine the points of the ball in the playground. ``` ballX=Math.floor(Math.random() * 1060) + 20;//Generate random numbers from 20 to 1080 ballY=Math.floor(Math.random() * 660) + 20;//Generate random numbers from 20 to 680 ``` <br> The radius and speed of the ball will be linked together. The bigger the ball, the slower the speed. I'll set the radius of the largest ball to 20, and I'll find the speed of 20 by subtracting the radius of the ball. ``` ballR=Math.floor(Math.random() * 10) + 10;//Generate random numbers from 10 to 20 ballSpeed=20-ballR; ``` <br> We need direction information of the ball. Once you've created it with direction information, we can figure out where to go. I will set 4 places for directions. The following illustration shows the direction of the ball. #### Screenshot 1  <br> Then I can determine the direction of the ball with a number between 1 and 4. ``` ballDirection=Math.floor(Math.random() * 4) + 1; ``` <br> Let's create these operations for all balls and add the object with the array `push()` method. ``` //for cycle to create all balls for (var i = 0; i < ballNumber; i++) { ballX=Math.floor(Math.random() * 1060) + 20;//Generate random numbers from 20 to 1080 ballY=Math.floor(Math.random() * 660) + 20;//Generate random numbers from 20 to 680 ballR=Math.floor(Math.random() * 10) + 10;//Generate random numbers from 10 to 20 ballSpeed=20-ballR; ballDirection=Math.floor(Math.random() * 4) + 1;//Generate random numbers from 1 to 4 ballObj=ballBuilder(ballX,ballY,ballR) var ballObject={ ballX:ballX, ballY:ballY, ballR:ballR, ballSpeed:ballSpeed, ballDirection:ballDirection, ballObj:ballObj } ballArray.push(ballObject); } ``` <br> So we placed 4 balls on the playground. #### Screenshot 2  <br> When we refresh the page, the balls are re-created. #### Screenshot 3  <br> ### Moving the Balls To move the balls first we need to know the process is renewed periodically. We can use the `setInterval()` method for this periodic refresh. Since we have more than one ball, we have to use the for loop, and our first task in the for loop will be to delete the balls at their current position. Thus, when we draw the next movement, there will not be more than one drawing. We can use the `ballObj` variable to delete balls. We can perform the deletion using the `remove()` method. ``` setInterval(function(){ for (var i = 0; i < ballNumber; i++) { ballArray[i].ballObj.remove(); //set direction } } , 100); ``` <br> We can change the x and y coordinates of the ball according to the direction information. If we make these changes according to the `ballSpeed` variable, we will determine their speed. #### Screenshot 4  <br> Adjust the directions according to the picture above. ``` if(ballArray[i].ballDirection==1){ ballArray[i].ballX=ballArray[i].ballX+ballArray[i].ballSpeed; ballArray[i].ballY=ballArray[i].ballY-ballArray[i].ballSpeed; ballArray[i].ballObj=ballBuilder(ballArray[i].ballX,ballArray[i].ballY,ballArray[i].ballR); } if(ballArray[i].ballDirection==2){ ballArray[i].ballX=ballArray[i].ballX+ballArray[i].ballSpeed; ballArray[i].ballY=ballArray[i].ballY+ballArray[i].ballSpeed; ballArray[i].ballObj=ballBuilder(ballArray[i].ballX,ballArray[i].ballY,ballArray[i].ballR); } if(ballArray[i].ballDirection==3){ ballArray[i].ballX=ballArray[i].ballX-ballArray[i].ballSpeed; ballArray[i].ballY=ballArray[i].ballY+ballArray[i].ballSpeed; ballArray[i].ballObj=ballBuilder(ballArray[i].ballX,ballArray[i].ballY,ballArray[i].ballR); } if(ballArray[i].ballDirection==4){ ballArray[i].ballX=ballArray[i].ballX-ballArray[i].ballSpeed; ballArray[i].ballY=ballArray[i].ballY-ballArray[i].ballSpeed; ballArray[i].ballObj=ballBuilder(ballArray[i].ballX,ballArray[i].ballY,ballArray[i].ballR); } ``` <br> I change the `ballX, and `ballY` variables of the ball according to the `ballDirection` variable and redraw the ball. #### Screenshot 5  <br> ### Set Limits For a Playground Our balls are moving but they disappear when they exceed the limits of the playing field. To solve this problem, we must change the direction of the ball when the ball reaches the game limit. We must direct the ball in the opposite direction to the direction it came from. #### Screenshot 6  <br> #### Screenshot 7  <br> As shown in the picture above, the ball can come to the limits in two directions. The vertical boundaries come from below and from the top and from the right and left to the horizontal boundaries. In setInterval() ``` if (ballArray[i].ballY<10) { if(ballArray[i].ballDirection==1){ ballArray[i].ballDirection=2; } if(ballArray[i].ballDirection==4){ ballArray[i].ballDirection=3; } } if (ballArray[i].ballY>690) { if(ballArray[i].ballDirection==2){ ballArray[i].ballDirection=1; } if(ballArray[i].ballDirection==3){ ballArray[i].ballDirection=4; } } if (ballArray[i].ballX<10) { if(ballArray[i].ballDirection==4){ ballArray[i].ballDirection=1; } if(ballArray[i].ballDirection==3){ ballArray[i].ballDirection=2; } } if (ballArray[i].ballX>1080) { if(ballArray[i].ballDirection==1){ ballArray[i].ballDirection=4; } if(ballArray[i].ballDirection==2){ ballArray[i].ballDirection=3; } } ``` <br> #### Screenshot 8  <br> Thus we have achieved the movement of the balls in different sizes and at different speeds. # Curriculum <a href="https://steemit.com/utopian-io/@onepice/tank-fire-game-using-html-svg-part-1">Tank Fire Game Using HTML SVG (Part-1)</a> <a href="https://steemit.com/utopian-io/@onepice/tank-fire-game-using-html-svg-part-2">Tank Fire Game Using HTML SVG (Part-2)</a> # Proof of Work Done <a href="https://github.com/onepicesteem/Tank-Fire-Game-Using-HTML-SVG-Part-3">Tank Fire Game Using HTML SVG (Part-3)</a>
author | onepice |
---|---|
permlink | tank-fire-game-using-html-svg-part-3 |
category | utopian-io |
json_metadata | {"tags":["utopian-io","tutorials","jquery","pablojs","game-developer"],"image":["https://cdn.steemitimages.com/DQmc4pjGzN6hQFF6kUZcnFoRoacNxtbzyScnPvbTVLbexxC/Untitled-1.fw.png","https://cdn.steemitimages.com/DQmZs5HeKXHVMB4Ev75VhjqZozL4yteBvic1yupLjKkriY9/Untitled-1.fw.png","https://cdn.steemitimages.com/DQmVVsZCUeynsjNTShib2DzdrYpBcn91n9Bk89JHnXGXY1g/jquery1.JPG","https://cdn.steemitimages.com/DQmazC9Vs9XVHEQWdTeE5914JNPmgfTPH3F9gDdmqFCCAQL/jquery2.JPG","https://cdn.steemitimages.com/DQmUgH8sV1WszNUoA1yrFWusGL6z6FgwoTSsVmBHucp4uCb/Untitled-2.fw.png","https://cdn.steemitimages.com/DQmYoML2a9Fs1HMtKbV6z2vnUtsmK5ZmZs54r1G696icpD3/ezgif1.gif","https://cdn.steemitimages.com/DQmVbU63zDp5KLZjWrWkZf3xz12L5qdizmwy5r7qA5Pxb7D/Untitled-3.fw.png","https://cdn.steemitimages.com/DQmS4YLA13ssv5oU2jgucMx6rxu2fN2BHidJvenGqHML87R/Untitled-4.fw.png","https://cdn.steemitimages.com/DQmeAuNdR1SVprMTeyT71c9A9nxXc3BQAAmBTbuSmDt21e6/ezgif2.gif"],"links":["https://github.com/premasagar/pablo","https://github.com/onepicesteem","https://github.com/onepicesteem/Tank-Fire-Game-Using-HTML-SVG-Part-3","https://github.com/Microsoft/vscode","https://steemit.com/utopian-io/@onepice/tank-fire-game-using-html-svg-part-1","https://steemit.com/utopian-io/@onepice/tank-fire-game-using-html-svg-part-2"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-09-18 11:30:00 |
last_update | 2018-09-18 11:30:00 |
depth | 0 |
children | 4 |
last_payout | 2018-09-25 11:30:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 19.985 HBD |
curator_payout_value | 6.281 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 11,266 |
author_reputation | 9,626,549,398,383 |
root_title | "Tank Fire Game Using HTML SVG (Part-3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,575,357 |
net_rshares | 19,829,723,936,328 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yehey | 0 | 36,129,762,191 | 10% | ||
rafalski | 0 | 52,678,109,938 | 100% | ||
codingdefined | 0 | 7,258,907,030 | 9% | ||
bachuslib | 0 | 19,066,095,919 | 100% | ||
katamori | 0 | 6,134,506,652 | 100% | ||
utopian-io | 0 | 19,055,537,642,765 | 12.69% | ||
amosbastian | 0 | 17,840,345,552 | 24.25% | ||
holger80 | 0 | 130,091,629,377 | 80% | ||
sudefteri | 0 | 2,767,645,098 | 100% | ||
cutkhanza | 0 | 888,907,639 | 100% | ||
properfraction | 0 | 601,162,653 | 100% | ||
acknowledgement | 0 | 521,234,610 | 10% | ||
petrm | 0 | 235,451,491 | 50% | ||
isabelll | 0 | 240,408,265 | 50% | ||
vvvvv | 0 | 237,876,016 | 50% | ||
no0o | 0 | 237,596,820 | 50% | ||
edm0nd24 | 0 | 236,567,450 | 50% | ||
rii | 0 | 236,375,617 | 50% | ||
walker5 | 0 | 233,553,621 | 50% | ||
sp33dygonzales | 0 | 233,383,876 | 50% | ||
dolleyb | 0 | 234,750,200 | 50% | ||
miggel | 0 | 227,856,158 | 50% | ||
selise | 0 | 235,891,357 | 50% | ||
kleinheim | 0 | 236,560,726 | 50% | ||
bajaro | 0 | 237,669,857 | 50% | ||
badeder | 0 | 235,881,879 | 50% | ||
andrew28zx | 0 | 607,807,179 | 100% | ||
borndead04 | 0 | 609,489,993 | 100% | ||
lordofreward | 0 | 356,910,874 | 1.5% | ||
council | 0 | 684,626,236 | 10% | ||
ivankash | 0 | 653,018,151 | 100% | ||
filinenok | 0 | 666,096,601 | 100% | ||
ilia013v | 0 | 622,607,662 | 100% | ||
stoerte | 0 | 237,446,718 | 50% | ||
fister | 0 | 231,417,252 | 50% | ||
joshi110 | 0 | 236,782,138 | 50% | ||
remind-me | 0 | 134,867,711 | 100% | ||
laolabbal | 0 | 642,700,750 | 100% | ||
hakobmos | 0 | 657,881,004 | 100% | ||
yallod | 0 | 623,182,420 | 100% | ||
bohrbounded | 0 | 682,593,905 | 100% | ||
lanemva21 | 0 | 668,747,992 | 100% | ||
edwardcru96 | 0 | 668,507,555 | 100% | ||
mightypanda | 0 | 33,426,942,638 | 50% | ||
upperhostler | 0 | 637,356,567 | 100% | ||
amuseaccuracy | 0 | 649,866,085 | 100% | ||
calcreteprize | 0 | 634,198,904 | 100% | ||
madel | 0 | 234,683,569 | 50% | ||
house-targaryen | 0 | 237,041,279 | 50% | ||
launchstifle | 0 | 637,254,049 | 100% | ||
samakovgor | 0 | 607,661,583 | 100% | ||
pumpdyke | 0 | 609,035,225 | 100% | ||
strangetwelve | 0 | 607,108,866 | 100% | ||
startophat | 0 | 609,275,122 | 100% | ||
fastandcurious | 0 | 4,076,310,559 | 100% | ||
searchmalt | 0 | 607,785,463 | 100% | ||
recentlyimply | 0 | 606,859,125 | 100% | ||
facedwrapped | 0 | 607,130,938 | 100% | ||
viperdupe | 0 | 606,764,024 | 100% | ||
ibericovar | 0 | 607,133,100 | 100% | ||
goldbeastly | 0 | 606,735,435 | 100% | ||
molarwherever | 0 | 607,108,431 | 100% | ||
malmseycafe | 0 | 606,825,079 | 100% | ||
loathsomemaps | 0 | 607,793,784 | 100% | ||
maillithium | 0 | 607,813,637 | 100% | ||
marcatounique | 0 | 607,805,764 | 100% | ||
asavin88 | 0 | 609,466,581 | 100% | ||
vtemnotu | 0 | 609,424,974 | 100% | ||
iauns | 0 | 83,268,285,155 | 100% | ||
lost-and-found | 0 | 236,560,726 | 50% | ||
antoniel | 0 | 610,433,380 | 100% | ||
vsmirnov3 | 0 | 606,792,542 | 100% | ||
moskalenkoalexey | 0 | 607,812,383 | 100% | ||
wirsing | 0 | 234,143,237 | 50% | ||
rij | 0 | 237,173,283 | 50% | ||
cceleste | 0 | 233,527,896 | 50% | ||
b1337 | 0 | 233,527,896 | 50% | ||
b33r | 0 | 236,560,726 | 50% | ||
huber | 0 | 221,396,577 | 50% | ||
dessertplay | 0 | 607,821,665 | 100% | ||
jacekw.dev | 0 | 1,419,166,939 | 100% | ||
paelladiamond | 0 | 608,973,364 | 100% | ||
bucksumpaypal | 0 | 607,759,688 | 100% | ||
eggyrothwell | 0 | 606,854,767 | 100% | ||
carnwalking | 0 | 608,883,168 | 100% | ||
dyogramsponson | 0 | 606,831,068 | 100% | ||
shockingextoll | 0 | 606,731,383 | 100% | ||
scubaelaborate | 0 | 607,113,955 | 100% | ||
abnormalsystem | 0 | 607,123,556 | 100% | ||
reinfizzy | 0 | 607,751,638 | 100% | ||
lymphomatumblr | 0 | 607,111,244 | 100% | ||
meaninglathered | 0 | 607,148,095 | 100% | ||
periodantenna | 0 | 610,009,572 | 100% | ||
rollpub | 0 | 609,958,522 | 100% | ||
lynxbraces | 0 | 607,110,941 | 100% | ||
revealpipet | 0 | 607,135,712 | 100% | ||
soulfulurban | 0 | 606,703,660 | 100% | ||
securelagan | 0 | 610,282,115 | 100% | ||
bullinachinashop | 0 | 3,403,311,141 | 100% | ||
piresfa | 0 | 238,094,804 | 50% | ||
redradish | 0 | 237,402,466 | 50% | ||
awesome-n | 0 | 237,453,170 | 50% | ||
to-upgrade | 0 | 234,543,494 | 50% | ||
rustyrobert | 0 | 234,633,703 | 50% | ||
steem-ua | 0 | 305,954,900,148 | 1.33% | ||
torntonbar | 0 | 610,443,823 | 100% | ||
pashafeloff | 0 | 610,241,660 | 100% | ||
sera1995 | 0 | 610,056,092 | 100% | ||
phatchinson | 0 | 610,282,083 | 100% | ||
poluotts | 0 | 610,039,453 | 100% | ||
mkravchenko1989 | 0 | 610,079,824 | 100% | ||
saymonr | 0 | 609,958,565 | 100% | ||
edvardprays | 0 | 610,403,399 | 100% | ||
kristiansim | 0 | 610,241,580 | 100% | ||
barrimakgi | 0 | 610,282,086 | 100% | ||
maksimle | 0 | 610,403,399 | 100% | ||
shortcirk | 0 | 610,403,424 | 100% | ||
nikolayskvortsov | 0 | 610,281,994 | 100% | ||
kolesnikovev74 | 0 | 609,958,588 | 100% | ||
mmmisha | 0 | 610,403,382 | 100% | ||
petrjemson | 0 | 610,403,398 | 100% | ||
ivan.siko | 0 | 609,418,345 | 100% | ||
vika.maltseva90 | 0 | 609,473,222 | 100% | ||
kostya.borisenko | 0 | 609,983,128 | 100% | ||
sblisn1985 | 0 | 609,998,905 | 100% | ||
grigoriyshmatkov | 0 | 610,282,064 | 100% | ||
igmosk1987 | 0 | 610,443,752 | 100% | ||
perlov11 | 0 | 610,403,397 | 100% | ||
igor.gorshkov | 0 | 610,403,355 | 100% | ||
mladogin | 0 | 610,241,643 | 100% | ||
antonturov90 | 0 | 610,282,097 | 100% | ||
vo20vaguro | 0 | 609,998,966 | 100% | ||
potex | 0 | 610,305,778 | 100% | ||
vote-o-mator | 0 | 238,071,972 | 50% | ||
jgrimm | 0 | 234,943,078 | 50% | ||
nfc | 0 | 6,543,855,840 | 1% | ||
hdu | 0 | 295,339,571 | 2% | ||
curbot | 0 | 3,033,747,007 | 10% |
#### Hi @onepice! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-tank-fire-game-using-html-svg-part-3-20180922t042551z |
category | utopian-io |
json_metadata | "{"app": "beem/0.19.54"}" |
created | 2018-09-22 04:25:54 |
last_update | 2018-09-22 04:25:54 |
depth | 1 |
children | 0 |
last_payout | 2018-09-29 04:25:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 286 |
author_reputation | 23,214,230,978,060 |
root_title | "Tank Fire Game Using HTML SVG (Part-3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,912,740 |
net_rshares | 0 |
Congratulations @onepice! You have completed the following achievement on the Steem blockchain and have been rewarded with new badge(s) : [](http://steemitboard.com/@onepice) Award for the number of posts published <sub>_Click on the badge to view your Board of Honor._</sub> <sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub> > Support [SteemitBoard's project](https://steemit.com/@steemitboard)! **[Vote for its witness](https://v2.steemconnect.com/sign/account-witness-vote?witness=steemitboard&approve=1)** and **get one more award**!
author | steemitboard |
---|---|
permlink | steemitboard-notify-onepice-20180920t041138000z |
category | utopian-io |
json_metadata | {"image":["https://steemitboard.com/img/notify.png"]} |
created | 2018-09-20 04:11:36 |
last_update | 2018-09-20 04:11:36 |
depth | 1 |
children | 0 |
last_payout | 2018-09-27 04:11:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 680 |
author_reputation | 38,975,615,169,260 |
root_title | "Tank Fire Game Using HTML SVG (Part-3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,731,301 |
net_rshares | 0 |
Hey, @onepice! **Thanks for contributing on Utopian**. We’re already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-tank-fire-game-using-html-svg-part-3-20180924t000515z |
category | utopian-io |
json_metadata | "{"app": "beem/0.19.42"}" |
created | 2018-09-24 00:05:15 |
last_update | 2018-09-24 00:05:15 |
depth | 1 |
children | 0 |
last_payout | 2018-10-01 00:05:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 589 |
author_reputation | 152,955,367,999,756 |
root_title | "Tank Fire Game Using HTML SVG (Part-3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 72,076,803 |
net_rshares | 0 |
I thank you for your contribution. Here is my thought; * Titles show what your post is about, so use them wisely. When defining titles, choosing and positioning words is essential to gain the user's attention. Giving general words priority than the rest is the key to achieve that. So, consider putting "HTML-SVG-PabloJS" ahead of the title and explain what you are doing in this part, e.g., implementing moving targets. ---- Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/8/22211424). ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | yokunjon |
---|---|
permlink | re-onepice-tank-fire-game-using-html-svg-part-3-20180922t035745368z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/8/22211424","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-09-22 03:57:45 |
last_update | 2018-09-22 03:58:57 |
depth | 1 |
children | 0 |
last_payout | 2018-09-29 03:57:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.046 HBD |
curator_payout_value | 0.006 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 917 |
author_reputation | 19,266,807,595,513 |
root_title | "Tank Fire Game Using HTML SVG (Part-3)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 71,911,256 |
net_rshares | 46,968,369,804 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yuxi | 0 | 8,973,376,166 | 30% | ||
pixelfan | 0 | 2,056,551,080 | 0.54% | ||
espoem | 0 | 3,421,513,842 | 15% | ||
amosbastian | 0 | 6,252,675,336 | 8.85% | ||
organicgardener | 0 | 4,798,366,303 | 25% | ||
reazuliqbal | 0 | 6,846,325,461 | 10% | ||
mightypanda | 0 | 13,618,384,038 | 20% | ||
fastandcurious | 0 | 1,001,177,578 | 25% |