-
Posts
1877 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
Events
Everything posted by cubanace
-
Thats my goal. Progressing slowly, need better blueprints.
-
Hello everyone, I will post progress of the Making of the YAK-38 External and cockpit model along with its assets like the kiev class carriers. Best regards: Cubanace.
- 73 replies
-
- 13
-
-
Any chance for a Yak-38 in the future after MiG-29?
cubanace replied to IcedVenom's topic in DCS Core Wish List
Yes We found one and have access to the cockpit as well the only problem is that i live in the United States and i have to travel to Russia to meet up in the museum,i already had plans of visiting russia so im excited about this opportunity. Here are some preview pics of the exterior modeling. -
Any chance for a Yak-38 in the future after MiG-29?
cubanace replied to IcedVenom's topic in DCS Core Wish List
-
Any chance for a Yak-38 in the future after MiG-29?
cubanace replied to IcedVenom's topic in DCS Core Wish List
Hello it has been a while i hope everyone is doing good, Anyway like i have said before yes 4 years ago i was stupid and inexperienced and made a terrible mistake that i have regret all this time but i cant turn back time, Instead i stopped all those projects and Focus only in the SU-57 and YAK-38M, 4 years ago i was blind and i did not really know how hard it was to make aircraft for dcs world, its lot more than just 3d models or animations, the hard part is the development costs and licensing ect. Anyway i am still here and learning and my only goal is one day becoming or joining another 3rd party in order to make DCS a better experience and after doing this for more than 4 years i have come to learn a lot and i love it, i don't regret any second or time or effort i put into learning coding,modeling,animation and the dcs overal core. Again my apologies for my past but that is now behind. best regards: cubanace -
https://discord.gg/t2mbSf
-
I am aware of all changes in terms of the production model, Nose,wings,fuselage,tails,canopy stealth coating layers ect, All that will be worked on.
-
It will be added as an asset to the SU-57 public Mod.
-
More to come in regards coding,modeling and making CubanAce Simulations a business in order to deal with Sukhoi, I will let you all know in the coming weeks when I acquire my business permit. Below is a quick shot of the Sidebay doors still Wip.
-
Cockpit 3D Modeling thanks to videos and pictures, Example below of 3d modeling the ventilation pipes and frame.
-
Yes, dials,buttons,mfds,stick and throttle all Clickable.
-
Cockpit Modeling... Started 3d modeling the Ventilation pipes and rear frame section of the Cockpit. Here is WIP of the Rear Section of the cockpit.
-
3d model Hello Again here is more Improvements. I take seriously what the DCS community asks, after many test pilots reporting that the pilot model was to big and that the IRST 3d model was off well tonight i fixed it, here is how its looking so far, thanks again for your support guys,keep asking and we will improve this together.
-
Project News Hello DCS Community I am Working extremely hard in order to Bring you guys one of a kind experience in regards the new SU-57 EFM+ASM Build for DCS World, This includes : Multirole Radar: Air to ground and Air to Air Radar Modes. weapons used by the SU-57,A/A and A/G, Animated Weapons Bay Doors, Animated gun port, EFM Flight Model, FM digital computer (Fadec), Dircm Defense Suite, Navigation, Thrust Vectoring: both manually or in combination with the Fadec System. Project Module being developed with C++ and Lua in mind in order to meet DCS Standards and both external model and cockpit refine from scratch in order to be in par with dcs standards models.
-
I use Visual Studio for coding systems and Flight model in C++ and Notepad++ for Lua for quick Scripting.
-
Here is some Clips on how the EFM is coming along, Please be patient there is alot of research and study on my part And I will take my time to make this happen,everything you see is work in progress. Ground Handing realism movements. High angle Alpha maneuver and maintaining control.
-
Hello DCS Community, I gladly will show Progress of my Next Build project Of the SU-57 Felon,it has taken me a extreme amount of time to learn 3d modeling, coding C++ and LUA and DCS overall in order to improve my work and continue doing what i love best. Soon we will have our Standalone SU-57 so please be patent. Below are some screenshots of the new Project Core and improvements in 3d modeling and more.
- 502 replies
-
- 10
-
-
-
Great landing i am glad you had fun.
-
Thank you.
-
Su-57 from Cubanace radar detection
cubanace replied to skywalker22's topic in Utility/Program Mods for DCS World
Under Main aircraft Lua there are values for RCS and how much heat signature . -
Su-57 from Cubanace radar detection
cubanace replied to skywalker22's topic in Utility/Program Mods for DCS World
I'm sorry but I'm terrible with sarcasms, I don't go out much and live under a rock -
Su-57 from Cubanace radar detection
cubanace replied to skywalker22's topic in Utility/Program Mods for DCS World
You are wrong,Stealth does Apply in my case,the SU-57 has a stealth value and also Heat signature reduced to some extent, It's up to the developer to add those values. -
update Redownload the mod in order for it to work with latest updates, Download at use file section or at my discord under download section. Discord https://discord.gg/8qtz7M
-
StandAlone Version We are working hard on our first release of Stand Alone EFM of SU-57 and we will Announce when.
-
Its similar but no, I learned from the A-4 code back when it was first released, but animation scripts are similar and just need a few teaks to call different sensors. Here is the original from Slats local dev = GetSelf() local update_time_step = 0.05 --20 time per second make_default_activity(update_time_step) local sensor_data = get_base_data() local SLAT_STATE = 0 function update() local t_ias = sensor_data.getIndicatedAirSpeed()*1.9438444924574 if (t_ias < 100) then SLAT_STATE = 1 elseif (t_ias < 200) then SLAT_STATE = 1-(t_ias/100 - 1) end set_aircraft_draw_argument_value(13,SLAT_STATE) set_aircraft_draw_argument_value(14,SLAT_STATE) end need_to_be_closed = false -- close lua state after initialization