@Wellidowner 1.When i creating this mod, first i set the distance of aim 10 000 meters if i remember. But problem was that is hard to render on your screen point that 10 000 meters away from your screen. And this point should tell you about direction of your airplane. It is not the same like rendering another any point 10 000 meters away.
2. About jittering. Your airplane is not the paper plane, because your airplane have some moments of inertia. Algorithm that control your airplane should have some damper input to damper your inertial aircraft. It is not enough to use only the angle diference between direction of airplane and direction of camera direction. You can verify this: try to use only Pitch, Yaw, Roll sensitivity modifer and set Pitch, yaw and roll damper = 0. It will be no possible to easy control, your airplane become to sway.
In code i use angular speed of airplane like damper input. This angular speed in game calculated by Numerical differentiation: angle value on current frame compare with angle value at last game frame and in result i have angular speed. In result i have angular speed of some axis. This angular speed are "noisy" - this is the consequence of using numerical differentiation. Default step 0.02 seconds is not enough to getting the accurace value of angular speed that can be used on high speed. On pigpen you can see that it easy to contolon low speed and no exist any jittering. But jittering exist only on high speed. For this angular speed problem you can find similar jittering in another my mods: Fly-by-wire, turret control.
@steelfeather I can not solve the problem of jittering at high speed. It is no possible in Unity3D Engine. I dont know how to create mouse aiming of airplane without jittering at high speed.
@Wellidowner It is true that the crosshair is only a certain distance in front of the plane. If i rememer, it is a 1000m distance in the mod. This phenomenon is called parallax. It exist in WarThunder too from 3st person of view. It exist in this mod from 3st person of view too.
@Defy It is no bug. This is a work of aiming point of HUD. If the enemy airplane going up, then your aiming point going down. In this case you should up your nose to combine the aiming point and the target and shoot after that. Look how work the aiming point in DCS on Su-27 HUD: https://youtu.be/UPtuU1yQu7g
In this mod it work same, but little different for the reason of special ballistic on game machinegun.
This game needs in textures for stock blocks. Map in video so beautiful and realistic, that toy rover looks superfluous.
Map looks awesome, by the way.
@Rakoval500k Честно говоря. я не планировал вообще обновлять этот мод, так как не вижу, чтобы его использовало большое количество людей. В данный момент я занят анимацией тормозного парашюта. После релиза тормозного парашюта я посмотрю, что с ним можно сделать, но ничего не обещаю
@Wellidowner No, this mod will never fixed. This mod is very old and outdated. And the basic skeleton of the wing are unsuccessfull, because the simplewing are not mirroring relative Y axis (like stock wing). I know about this mistake, but this mistake in the process of creating of mod was not obviously for me. But not worry, i have a plans about the creating SimpleWing 2 mod, it will be fusion of the SimpleWing mod and Variable wing mod. I dont mean about fact fusion outdated simplewing and outdated variable wing, im talking about new mod with normal code (Now im coding better that 3 years ago). But its just a plans, at the moment im creating drag parachute mod (you can see the pictures on forum).
@PlaneFlightX Sorry, but i cant do it. I dont want to mislead users. You have not relation to creating of this mod, for this reason i cant add you as contributor. If you have any advices to description, you can write it and i will consider them.
@piskogrizz228 Спасибо. Ну, игра которую я жду, все еще находится в разработке, поэтому, возможно какие-нибудь еще моды появятся. Да и честно говоря, я уже соскучился по моддингу, хочется что-нибудь да сделать.
@PlaneFlightX Yes, i have restored tutorial today. In first time i have used imgur for showing gifs. But in one time google chrome have stop showing imgur's gifs. I have make a decision, that imgur account not need me anymore and have deleted it. But im absolutely forgot that many pictures of my mods have imgur hosting too. For these reason all pictures have been deleted too from all my mods. Now i use postimg for pics and gfycat for gifs and chrome show it both without any troubles.
Im happy to read that you use this mod. Enjoy!
Not sure, maybe in new update dev have created UV maps for some parts, but im absolutely sure that before 1.11 no one game part have UV map. I though that this bug have some relations with unestablished UV maps for parts.
Wow. Right now im trying to update variable wing to 1.11 and i have the same problem with colors. I have solve this rainbow bug, when i have created UVs for all my five airfoils. Im surprised that it exist in vanilla game. I have noticed that this rainbow on game part have same colors like in color editor.
@PlaneFlightX I was very impressed with your love for this mod, for this reason im trying again to solve color problem in variable wing. I need some time.
@MIG31FoxhoundBM Absolutely all part mods have broken after 1.11. I cannot repair it all in the same time. Some outdated mod i will not repair it all. I am forced to update tracks 2, because many people use it. And yesterday i have successfully finally repair tracks 2.
@Stinkypinky Just now i have downloaded standalone jet engine mod from this page https://www.simpleplanes.com/Mods/View/938356/Jet-Engine. Thrust vector is ok. I dont want that you think that im cheating you - look at the gif, i have created it right now: GIF. You can see that thrust vector is ok.
Also, i have checked this mod ins simplewings pack, its ok. I cannot solve the problem, if i cannot reproduce it.
@PlaneFlightX I have tried update variable wing mod to Beta 1.11. Unfortunately, now wings look more weird that in previous version of game: Click. I dont know what the reason of this. Sorry, but i cant do anything with this. For this reason variable wing will not update anymore.
@Wellidowner This is no possible now. After releasing drag parachute i will see that i can do.
@Wellidowner 1.When i creating this mod, first i set the distance of aim 10 000 meters if i remember. But problem was that is hard to render on your screen point that 10 000 meters away from your screen. And this point should tell you about direction of your airplane. It is not the same like rendering another any point 10 000 meters away.
2. About jittering. Your airplane is not the paper plane, because your airplane have some moments of inertia. Algorithm that control your airplane should have some damper input to damper your inertial aircraft. It is not enough to use only the angle diference between direction of airplane and direction of camera direction. You can verify this: try to use only Pitch, Yaw, Roll sensitivity modifer and set Pitch, yaw and roll damper = 0. It will be no possible to easy control, your airplane become to sway.
In code i use angular speed of airplane like damper input. This angular speed in game calculated by Numerical differentiation: angle value on current frame compare with angle value at last game frame and in result i have angular speed. In result i have angular speed of some axis. This angular speed are "noisy" - this is the consequence of using numerical differentiation. Default step 0.02 seconds is not enough to getting the accurace value of angular speed that can be used on high speed. On pigpen you can see that it easy to contolon low speed and no exist any jittering. But jittering exist only on high speed. For this angular speed problem you can find similar jittering in another my mods: Fly-by-wire, turret control.
It is awesome that building on beach are destroyable. This map shows to us the gameplay is possible in SimplePlanes.
+4My congrats with releasing this map! I remember that you have started to create this map a long time ago. Guess this great to finally release it:)
+2@steelfeather I can not solve the problem of jittering at high speed. It is no possible in Unity3D Engine. I dont know how to create mouse aiming of airplane without jittering at high speed.
@Wellidowner It is true that the crosshair is only a certain distance in front of the plane. If i rememer, it is a 1000m distance in the mod. This phenomenon is called parallax. It exist in WarThunder too from 3st person of view. It exist in this mod from 3st person of view too.
@Defy It is no bug. This is a work of aiming point of HUD. If the enemy airplane going up, then your aiming point going down. In this case you should up your nose to combine the aiming point and the target and shoot after that. Look how work the aiming point in DCS on Su-27 HUD: https://youtu.be/UPtuU1yQu7g
+2In this mod it work same, but little different for the reason of special ballistic on game machinegun.
@steelfeather I have no plans to update this mod. Why you want it?
+1@PlaneFlightX I have no plans to update this mod. This mod is old with bad code. Also, now im creating drag parachute.
+2This map is awesome. Have many buldings, map is big. And i have no any troubles with FPS. Very nice!
+1@MrAdhmGamer Now im making a drag parachute mod
@DameTheMobileFriendly Android not support anymore.
+5@PlaneFlightX No
Эх, приятно видеть, что гусеницы все еще используются:)
+1This game needs in textures for stock blocks. Map in video so beautiful and realistic, that toy rover looks superfluous.
+2Map looks awesome, by the way.
@MrDooper What problems do you have with this mod?
@Clutch I have missed for modding:)
+1@Gifiboy No.
+1@Rakoval500k Честно говоря. я не планировал вообще обновлять этот мод, так как не вижу, чтобы его использовало большое количество людей. В данный момент я занят анимацией тормозного парашюта. После релиза тормозного парашюта я посмотрю, что с ним можно сделать, но ничего не обещаю
+1-First time?
+2-Huh?
Wow, why are you took roof tiles and attach it to your tank as armor
+3@Wellidowner No, this mod will never fixed. This mod is very old and outdated. And the basic skeleton of the wing are unsuccessfull, because the simplewing are not mirroring relative Y axis (like stock wing). I know about this mistake, but this mistake in the process of creating of mod was not obviously for me. But not worry, i have a plans about the creating SimpleWing 2 mod, it will be fusion of the SimpleWing mod and Variable wing mod. I dont mean about fact fusion outdated simplewing and outdated variable wing, im talking about new mod with normal code (Now im coding better that 3 years ago). But its just a plans, at the moment im creating drag parachute mod (you can see the pictures on forum).
+4@Wellidowner No, its unpossible to disable the afterburner. The afterburned hardcoded into the code.
@Ghost399323 Your mean the speed of camera rotation? Yes,
Horizontal speed
andVertical speed
attributes.@Elais3001 Invert the 2nd input controller (Roll by default) on left tracks.
@PlaneFlightX I have consider most part of your advices. The description has been edited. Tutorial have been moved to tutorial wing. Thank you!
+3Looks cool
@PlaneFlightX Sorry, but i cant do it. I dont want to mislead users. You have not relation to creating of this mod, for this reason i cant add you as contributor. If you have any advices to description, you can write it and i will consider them.
+3@shikochan It is impossible. Older versions was permamently deleted.
@PlaneFlightX
+2@PlaneFlightX Mod was updated. Please, read the description and check your airplanes. Dont forget to delete old version of the mod.
@piskogrizz228 Спасибо. Ну, игра которую я жду, все еще находится в разработке, поэтому, возможно какие-нибудь еще моды появятся. Да и честно говоря, я уже соскучился по моддингу, хочется что-нибудь да сделать.
@SAD000001 The mod version 1.0. I dont remember version game for it mod. Now it not work for android.
+5@PlaneFlightX Yes, i have restored tutorial today. In first time i have used imgur for showing gifs. But in one time google chrome have stop showing imgur's gifs. I have make a decision, that imgur account not need me anymore and have deleted it. But im absolutely forgot that many pictures of my mods have imgur hosting too. For these reason all pictures have been deleted too from all my mods. Now i use postimg for pics and gfycat for gifs and chrome show it both without any troubles.
+2Im happy to read that you use this mod. Enjoy!
@goboygo1 Yes, i have a electroguitar. Thanks!
@simpleplayer1 i was called to update some mods
@PlaneFlightX
+3@PlaneFlightX Mod was updated. Please read the update description and check your airplanes.
+1Same bug on variable wing mod, before i have created UV-map for it: https://i.postimg.cc/66LYcbTX/bandicam-2021-10-08-21-03-48-182.png
+1Not sure, maybe in new update dev have created UV maps for some parts, but im absolutely sure that before 1.11 no one game part have UV map. I though that this bug have some relations with unestablished UV maps for parts.
+1Wow. Right now im trying to update variable wing to 1.11 and i have the same problem with colors. I have solve this rainbow bug, when i have created UVs for all my five airfoils. Im surprised that it exist in vanilla game. I have noticed that this rainbow on game part have same colors like in color editor.
@TheSpartan I have add new color not for customization. It is the one way to make normal the color of rubber.
@PlaneFlightX I was very impressed with your love for this mod, for this reason im trying again to solve color problem in variable wing. I need some time.
+2@MIG31FoxhoundBM Absolutely all part mods have broken after 1.11. I cannot repair it all in the same time. Some outdated mod i will not repair it all. I am forced to update tracks 2, because many people use it. And yesterday i have successfully finally repair tracks 2.
@Stinkypinky Just now i have downloaded standalone jet engine mod from this page https://www.simpleplanes.com/Mods/View/938356/Jet-Engine. Thrust vector is ok. I dont want that you think that im cheating you - look at the gif, i have created it right now: GIF. You can see that thrust vector is ok.
Also, i have checked this mod ins simplewings pack, its ok. I cannot solve the problem, if i cannot reproduce it.
@X4JB nothing. I have add only Trim 2 colour to change rubber color.
@X4JB Problem with color was solved. Mod was updated. Please, check your tanks. Dont forget to delete old version of the mod.
+2Wow! Awesome! Cant wait when i can run this mod on my Android phone!!!
+4@PlaneFlightX I have tried update variable wing mod to Beta 1.11. Unfortunately, now wings look more weird that in previous version of game: Click. I dont know what the reason of this. Sorry, but i cant do anything with this. For this reason variable wing will not update anymore.
+1@GETDozentified You cant see it because mod was updated for 1.11 Beta (public-test in Steam). Check you steam version of game.