Тёмный
DaveDev
DaveDev
DaveDev
Подписаться
This channel is for teaching people to develop applications with various programming languages. Things like developing a website, a computer app, a videogame, AI, and much more
Комментарии
@turashue.
@turashue. 14 дней назад
This is an amazing devlog! You had do much great information about the actual programming process. I'm also thinking of developing an isometric game in UE5 but was so daunted by the fact that there were very few tutorials on making an isometric game in UE. Thank you for this! I'll be following your progress and I hope to see updates on your game soon 😊
@davedev402
@davedev402 13 дней назад
Glad to know that it is helpful! I understand why there are not a lot of tutorials out there, specially because you need to manually code the rendering part. But if you are up to the challenge, don't let that discourage you!
@souptaels
@souptaels 22 дня назад
I hope you can upgrade your face cam in the soon future. Very low quality. But also you don't have to be so close to the camera
@davedev402
@davedev402 22 дня назад
Hey, Thanks for the feedback! Yeah, I need to look for a camera that has better resolution and zoom in/out feature.
@stylianosmaimaris6359
@stylianosmaimaris6359 29 дней назад
Bought the plugin (which is fantastic btw) basically on day of release as I was also in the process of extending paper2d to support many of the features of tiled itself. Regarding the z order of sprites, how do you handle character sprites on the tilemap itself? E.g. a character that should be behind a specific tile. Simple axis sorting didn’t seem to work for me. Was thinking of somehow rendering individual tiles vs the whole tilemap or even post importing from tiled to split the tilemap per layer and assign different translucency sort order per layer. Not sure yet.
@davedev402
@davedev402 29 дней назад
Hey, thanks for the support! I haven't tackled character sprites yet as I am still working on navigation, but as you could see on the video (at 7:31) that I am moving a small square sprite around the map and when it moves to a tile that is behind another tile it just hides. I will probably cover it in the next devlog, but as an advance, if you paint the tiles in the correct order in tiled and separate the elevation in layers (the back tiles that go down also need to be separated) then you only need to get the tile position in the world and place the sprite slightly higher but not too much (there is a parameter in the tile map called separation per layer, which is the height between layers, you can use that to calculate how much higher from the tile it can be). I think you can see it better if you use the 3D camera in the editor and see that between the layers there is a little tiny elevation, you need to place your sprite between that space.
@stylianosmaimaris6359
@stylianosmaimaris6359 28 дней назад
@@davedev402 Gotcha. Been playing around with Z as my depth sorting for sprites on top of the tilemap (and not assigning it a translucent material) and having the sprites sort themselves via translucency. Not quite there yet though. Happy to see more people actively working with the engine for 2D stuff. Working on AAA fulltime but have not gotten the chance to use it for 2D outside of hobby projects. Can’t wait for the next devlog!
@davedev402
@davedev402 22 дня назад
@@stylianosmaimaris6359 I have just tried to place something bigger than a cursor in between tile layers and noticed what you meant instantly, apologies but the solution that I said before will not cut it. I'm still working on something that I can hopefully show on the next video. I also tried using the translucency as you suggested, but I think it only seems to work between sprites. A tilemap with different tile layers doesn't seem to work, or maybe I'm missing something...
@stylianosmaimaris6359
@stylianosmaimaris6359 22 дня назад
@@davedev402 No worries! Been rather busy with work so not much time to experiment with it either. Rendering individual tiles as sprites seems to work and the perf hit really isn't horrible depending on map size but its also not an ideal solution. Depending when I get some time I would probably look into how either godot or unity handle sprite drawing for isometric maps just to see how they handle it.
@ssddsameshtdifferentdragon6188
@ssddsameshtdifferentdragon6188 29 дней назад
Hey, I'm in the process of making a 3d tilemap level editor for my game. It was simple getting it setup, and it uses HISMs. I don't know if you're doing this to make a game, or if you're just challenging yourself, but if you are making a whole game, maybe look into integrating 2d and 3d together? Sometimes the easiest solution is the best one.
@davedev402
@davedev402 29 дней назад
That's quite interesting, do you have a video of it? I would love to see how you made it. Regarding the 3d and 2d together, that was gonna be my last option if I had too much trouble with just 2d. It just blows my mind that nowadays 3d is way easier to work with than 2d 😅
@ssddsameshtdifferentdragon6188
@ssddsameshtdifferentdragon6188 29 дней назад
@davedev402 I don't, but basically you make an array of x and y values that get placed in array of vectors. You use that to add HISM instances at the array of vectors. I'm using a data table for my tiles, and I spawn a HISM for every tile in my data table. When I want to swap a tile out, I just line trace to grab the instance number and instance location, remove that instance, and add an instance from whatever tile I want to place there.
@davedev402
@davedev402 29 дней назад
I see, pretty smart approach. I'll keep a note on that. Thanks for sharing 😊
@mercai
@mercai Месяц назад
Using UE for sprite tile-based isometric game with custom navigation tools, to me, feels like cherry-picking the worst aspects of both UE limitations and 2D tiles. It's just not a good idea, even if it can be done (sure it can). Especially for an isometric game, which is basically 3D already. Which solves any issues you might've had with navigation, probably easier on performance/drawcalls, and with couple tools could be just as robust and fast to use as a tile editor (just with 3d meshes for tiles). But if that's the way you chose, good luck!
@davedev402
@davedev402 Месяц назад
Thanks for the feedback! I already was aware that doing this in UE was going to be tough, but one of the reasons I wanted to do it with this engine, apart from my past experience with it, was to prove that it was doable as well as possibly raise awareness to the developers to push Paper2D a little bit further as it can potentially be as good as on other engines.
@vykow_
@vykow_ Месяц назад
hello, here to give strength, i think technical details are cool, great video 👌👌
@davedev402
@davedev402 Месяц назад
Thank you! I appreciate it very much 😊
@marcingogowski6077
@marcingogowski6077 Месяц назад
Works, thanks man!
@arjumandvillagelife
@arjumandvillagelife Месяц назад
hope this will work for me,, i am hosting school LMS on xamp, and want to give access to all devices using router wirelessly
@cemeterygate
@cemeterygate Месяц назад
I love using Unreal. I always say, you are more important than the tools you use. You have a head start on the knowledge, so I think Unreal will be fine.
@davedev402
@davedev402 Месяц назад
I couldn't agree more. Unreal has so many cool things that most times you take for granted when using other engines. I already have found a couple challenges, but nothing I can't solve with a little bit of time and patience. I'll probably talk about it on my next devlog.
@CodeWaveChannel
@CodeWaveChannel 2 месяца назад
Thanx a lot that works for me very well for my work , please don't stop, your informations, and your learning way are very important to us, keep sharing ..
@omegakiller1495
@omegakiller1495 2 месяца назад
I wish you had atleast some WIP in the video. But anyways i hope i get to see something in the next one :-) .. A SUB from me 🙂
@davedev402
@davedev402 2 месяца назад
Thanks for the feedback! Yeah, I get your point, however I wanted to use this as an introductory video and wanted to make it not too long. Also what I currently have is not ready to show yet, but for sure I will shot it on my next devlog!
@jumpkut
@jumpkut 2 месяца назад
Good luck mate!
@davedev402
@davedev402 2 месяца назад
Thanks so much!
@thekingspider2549
@thekingspider2549 2 месяца назад
Good luck on your journey and lots of strength !
@davedev402
@davedev402 2 месяца назад
Thanks! Very much appreciated ☺️
@tarekdhl6446
@tarekdhl6446 4 месяца назад
hey great work thanks , When you try to access your local site from another device on the network,Is he working in local network ????
@TheBigSweetah
@TheBigSweetah 4 месяца назад
OMG THANK YOU SO MUCH!!!!
@cybershadic7519
@cybershadic7519 5 месяцев назад
Thanks man, love it
@joemaya27
@joemaya27 5 месяцев назад
hi DaveDev, how to access it on LAN?
@gulshangunputh
@gulshangunputh 6 месяцев назад
bigger resolution mate!
@robkage
@robkage 7 месяцев назад
Hi DaveDev. I'm having an issue where the back office of my app is fine and secured and after a redirect command add automatically works. However the page tahts supposed to be available for any person on the web is not binding and at the same time I'm unable to access the app on the web when not on the server. What could be issue? I have configured Http-ssl as well with the cert paths .crt and .key should I remove them and just use the vhosts config? Any assistance is greatly appreciated. Thanks in advance and great videos.
@starpluslimited5075
@starpluslimited5075 8 месяцев назад
Short and precise. I love it
@missionreport
@missionreport 11 месяцев назад
Nice, how to renew if certificate expires? Big thanks. I just rebuild it and it works again.
@dileela
@dileela Год назад
🎉
@markmathur2296
@markmathur2296 Год назад
This video was really helpful. Thanks! (btw, I agree that you should have much bigger font size in the future).
@akdisrael
@akdisrael Год назад
is this applicable for wordpress?
@jhon231087
@jhon231087 Год назад
you save my life. thank you!!!
@musikdoktor
@musikdoktor Год назад
Works well if you are using the localhost machine, but it doesnt work if you try to access to the server from a external machine on the local network. any clue?
@patrikmikca3270
@patrikmikca3270 Год назад
@DaveDev Hi very nice work it really help me but can i ask how do i connect https to that website from another PC it is posible please reply
@muhammedfaizalp1633
@muhammedfaizalp1633 Год назад
thanks for your tutorial, while we are not able to see the screen, might be due to the limitations of the screen capturing software you are using.
@TheIonify
@TheIonify Год назад
I love your tutorial. But it seems not to be working anymore. Everytime I try to use the generated .crt and .key files Apache refuses to start. Any chance that you know the problem? Thanks in advance for your help
@TheIonify
@TheIonify Год назад
Sometimes the moment you ask for help, is the moment you find the solution: It seems that I have some problem in Firefox. But Chrome identifies the site as secure. So thanks again!
@coderemtb2024
@coderemtb2024 Год назад
Nice Video! 👍
@gerardocardenas8805
@gerardocardenas8805 Год назад
shared ext File my friend jajajjaja
@hjl243632044
@hjl243632044 Год назад
you use 10 minutes to explain a one-minute tutorial. So bad!
@cbbcbb6803
@cbbcbb6803 Год назад
Great. Except I don't like dark theme.
@sukhbirshanda4754
@sukhbirshanda4754 Год назад
thank you, it worked
@htheder
@htheder 2 года назад
Thank you so much for your video!!! I tried so many other examples and none of them seemed to work except yours! Thank you again!!!
@karenzakaryan5897
@karenzakaryan5897 2 года назад
pleas can you help me i dont find debug with autor Felix Becker
@markmathur2296
@markmathur2296 Год назад
Instead of Felix Becker, it's XDebug these days.
@Nava-Majumdar
@Nava-Majumdar 2 года назад
Nice work dude
@astriti12341
@astriti12341 2 года назад
short and sharp tutorial! I've been looking for a solution all over the internet for many hours and you just fixed it in 5mins. Really appreciate this tutorial. Keep going :)
@fernandoarnaldovilanculo8286
@fernandoarnaldovilanculo8286 2 года назад
Thanks man! You have no idea how long I've been searching for this! Thank you!
@humoodalmakhmari3329
@humoodalmakhmari3329 2 года назад
Great Tutorial bro, Very Clear , all the best 👍
@OthmanAlikhan
@OthmanAlikhan 2 года назад
Thanks for the video =)
@ravindrareddy4453
@ravindrareddy4453 2 года назад
Trust Me bro followed many tutorials on youtube, and read many articles and all felt incomplete, something is missing. This Video, cleared everything, What to Use, How to Use. Thank You, Dave, you earned a Subscriber.
@jagjeetsinghbhomrah
@jagjeetsinghbhomrah 2 года назад
I have done all the points which is mentioned by you in this video. Apache is started but the site showing not secure.
@debnathmriganka2010
@debnathmriganka2010 2 года назад
after that apache now started.
@alecn4115
@alecn4115 2 года назад
Muy buen totorial, casi que no consigo configurar esto para mi Moodle local, thank you man.
@bilalbehar8533
@bilalbehar8533 2 года назад
somehow apache doesnt wanna work
@khnaz35
@khnaz35 2 года назад
There must be an error one of your files. you may check them again and it should work
@computercity416
@computercity416 2 года назад
thanks very much that's all I needed
@Isixhubio7
@Isixhubio7 2 года назад
Before presenting any of his tutorials, the author should definitely take one tutorial on how to use screen capture software
@reeverbstudios
@reeverbstudios 2 года назад
Ha! Your code is sooo small could not see anything!!!
@Glenn_3
@Glenn_3 2 года назад
Hi, great tutorial very easy to follow, however it doesn't work for me. I replicated your every step, yet I get these error messages, could anyone help me with this problem, thank you in advance. It happens when I start my appache server, it won't even start. These are the error messages: [Tue Apr 19 10:10:02.085559 2022] [core:warn] [pid 5636:tid 536] AH00098: pid file C:/xampp/apache/logs/httpd.pid overwritten -- Unclean shutdown of previous Apache run? [Tue Apr 19 10:10:02.183314 2022] [mpm_winnt:notice] [pid 5636:tid 536] AH00455: Apache/2.4.51 (Win64) OpenSSL/1.1.1l PHP/8.0.12 configured -- resuming normal operations [Tue Apr 19 10:10:02.183314 2022] [mpm_winnt:notice] [pid 5636:tid 536] AH00456: Apache Lounge VS16 Server built: Oct 7 2021 16:27:02 [Tue Apr 19 10:10:02.183314 2022] [core:notice] [pid 5636:tid 536] AH00094: Command line: 'c:\\xampp\\apache\\bin\\httpd.exe -d C:/xampp/apache' [Tue Apr 19 10:10:02.188316 2022] [mpm_winnt:notice] [pid 5636:tid 536] AH00418: Parent: Created child process 20224 [Tue Apr 19 10:10:02.494359 2022] [mpm_winnt:notice] [pid 20224:tid 676] AH00354: Child: Starting 150 worker threads.